login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A280876 Palindromic primes with prime subscripts. 1
3, 5, 11, 191, 353, 797, 919, 11311, 12421, 13331, 16061, 18181, 31513, 32323, 34543, 34843, 36563, 37273, 70207, 72727, 77377, 78787, 1117111, 1120211, 1253521, 1257521, 1280821, 1328231, 1409041, 1456541, 1633361, 1824281, 1851581, 1903091, 1982891, 1984891, 1998991, 3002003, 3073703, 3211123, 3212123, 3252523 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,1

COMMENTS

Intersection of A002385 and A006450.

LINKS

Chai Wah Wu, Table of n, a(n) for n = 1..1000

Eric Weisstein's World of Mathematics, Palindromic Prime

Index entries for sequences related to palindromes

EXAMPLE

11311 is in the sequence because 11311 is a palindrome, 11311 is a 1367-th prime number and 1367 is prime.

MATHEMATICA

Select[Prime@ Prime@ Range@ 20000, PalindromeQ] (* modified by Robert G. Wilson v, Jan 09 2017 *)

PROG

(Python)

from itertools import chain, count, islice

from sympy import isprime, primepi

def A280876_gen(): # generator of terms

return filter(lambda n:isprime(n) and isprime(primepi(n)), chain.from_iterable(chain((int((s:=str(d))+s[-2::-1]) for d in range(10**l, 10**(l+1))), (int((s:=str(d))+s[::-1]) for d in range(10**l, 10**(l+1)))) for l in count(0)))

A280876_list = list(islice(A280876_gen(), 20)) # Chai Wah Wu, Jun 23 2022

CROSSREFS

Cf. A000040, A002113, A002385, A006450.

Sequence in context: A062601 A231017 A038198 * A357055 A079037 A281087

Adjacent sequences: A280873 A280874 A280875 * A280877 A280878 A280879

KEYWORD

nonn,base,easy

AUTHOR

Ilya Gutkovskiy, Jan 09 2017

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified February 28 09:13 EST 2023. Contains 360735 sequences. (Running on oeis4.)