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!)
A256451 Numbers n such that 10^n + prime(n) is prime. 0
2, 4, 27, 63, 756, 899, 8088, 15216, 47969, 50943 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(11) > 10^5. - Robert Price, Mar 29 2015
LINKS
EXAMPLE
4 is in this sequence since the fourth prime is 7 and 10^4+7=10007 is prime.
MATHEMATICA
Select[Range[100000], PrimeQ[10^# + Prime[#]] &]
PROG
(PARI) for(n=1, 10^3, if(ispseudoprime(10^n+prime(n)), print1(n, ", "))) \\ Derek Orr, Mar 29 2015
(Magma) [n: n in [1..770] | IsPrime(NthPrime(n) + 10^n)]; // Vincenzo Librandi, Mar 30 2015
CROSSREFS
Sequence in context: A104465 A175759 A098515 * A059719 A264930 A226347
KEYWORD
nonn,hard,more
AUTHOR
Robert Price, Mar 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 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)