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!)
A266421 Numbers n such that (2^(n+7)*5^(n+5) - 204979)/9 is prime (n > 0). 3
5, 11, 127, 149, 199, 239, 503, 1069, 4073 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers n such that '21669' appended to n times the digit 4 is prime.
Up to a(9) the terms themselves are primes.
a(1), a(2), a(6), a(9), and (2^(a(1)+7) * 5^(a(1)+5) - 204979)/9 = 4444421669 are also Sophie Germain primes.
a(10) > 50000 (if it exists).
LINKS
EXAMPLE
5 appears because 4444421669 ('4' concatenated 5 times and prepended to '21669') is prime.
MAPLE
A266421:=n->`if`(isprime((2^(n+7) * 5^(n+5) - 204979)/9), n, NULL): seq(A266421(n), n=1..5000);
MATHEMATICA
Select[ Range[5000], PrimeQ[(2^(# + 7) * 5^(# + 5) - 204979)/9] &]
PROG
(Magma)[n: n in[1 .. 1000] | IsPrime((2^(n+7) * 5^(n+5) - 204979) div 9)];
(PARI) is(n)=isprime((2^(n+7) * 5^(n+5) - 204979)/9)
CROSSREFS
Sequence in context: A222568 A248253 A262309 * A328445 A094108 A222674
KEYWORD
nonn,base,hard,more
AUTHOR
Mikk Heidemaa, Dec 29 2015
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 19 02:01 EDT 2024. Contains 371782 sequences. (Running on oeis4.)