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!)
A070955 Numbers k such that k concatenated with k-1 0's and its reversal is prime. 0
1, 122, 346, 1454, 3526, 7408, 14690 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(2) and a(3) give certified primes with Primo. a(4) gives a probable prime.
a(7) > 10^4.
LINKS
EXAMPLE
122 is a term because 12200...(121 zeros)...000221 is prime.
PROG
(Python)
from sympy import isprime
def afind(limit, startat=1):
for k in range(startat, limit+1):
s = str(k)
if isprime( int(s + "0"*(k-1) + s[::-1]) ): print(k, end=", ")
k += 10**(len(s)-1) if s[0] in "24568" else 1
afind(1500) # Michael S. Branicky, Nov 30 2021
CROSSREFS
Sequence in context: A369598 A276303 A224598 * A195856 A116216 A203805
KEYWORD
base,more,nonn
AUTHOR
Jason Earls, May 25 2002
EXTENSIONS
a(5), a(6) from Max Alekseyev, May 21 2011
a(7) from Michael S. Branicky, Nov 30 2021
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 April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)