OFFSET
1,1
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
EXAMPLE
17 is in this sequence because 17+26 = 43 is prime.
431 is in this sequence because 431+26 = 457 is prime.
MATHEMATICA
Select[Prime[Range[200]], PrimeQ[# + 26] &]
PROG
(Magma) [NthPrime(n): n in [1..250] | IsPrime(NthPrime(n)+26)];
CROSSREFS
Cf. sequences of the type p+n are primes: A001359 (n=2), A023200 (n=4), A023201 (n=6), A023202 (n=8), A023203 (n=10), A046133 (n=12), A153417 (n=14), A049488 (n=16), A153418 (n=18), A153419 (n=20), A242476 (n=22), A033560 (n=24), this sequence (n=26), A252090 (n=28), A049481 (n=30), A049489 (n=32), A252091 (n=34), A156104 (n=36); A062284 (n=50), A049490 (n=64), A156105 (n=72), A156107 (n=144).
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 14 2014
STATUS
approved