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!)
A297422 Numbers k such that 4*10^(2k) + 2*(10^k) + 1 is prime. 2
0, 1, 3, 5, 10, 196, 251, 310, 415, 1107, 2422 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Numbers of this form divide 8*(10^3k)-1.
a(12) > 50000. - Robert Price, Apr 11 2018
LINKS
EXAMPLE
7, 421, 4002001, and 40000200001 are prime, while 40201=7*5743, 400020001=31*12903871, etc.
MAPLE
select(k->isprime(4*10^(2*k)+2*(10^k)+1), [$0..1000]); # Muniru A Asiru, Apr 11 2018
MATHEMATICA
Select[Range[1500], PrimeQ[4 (10^(2 #)) + 2 (10^#) + 1] &] (* Michael De Vlieger, Dec 30 2017 *)
PROG
(PARI) isok(k) = isprime(4*10^(2*k)+2*(10^k)+1); \\ Michel Marcus, Dec 30 2017
CROSSREFS
Sequence in context: A024329 A354517 A354389 * A064523 A365443 A268034
KEYWORD
nonn,more
AUTHOR
Patrick A. Thomas, Dec 30 2017
EXTENSIONS
a(6)-a(10) from Michael De Vlieger, Dec 30 2017
a(11) from Jon E. Schoenfield, Jan 01 2018
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 March 29 07:27 EDT 2024. Contains 371265 sequences. (Running on oeis4.)