OFFSET
1,2
COMMENTS
a(n) = order among the primes of A061067(n).
Except for the first one all terms are even. Conjecture: First differences include all even integers. - Zak Seidov, Nov 10 2013
LINKS
Harry J. Smith, Table of n, a(n) for n=1..1000
FORMULA
MATHEMATICA
Select[ Range[ 400 ], PrimeQ[ Prime[ # ] + # ] & ]
PROG
(PARI) { n=0; for (m=1, 10^9, if (isprime(prime(m) + m), write("b064402.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Sep 13 2009
(Magma) [n: n in [0..500]| IsPrime(NthPrime(n) +n)]; // Vincenzo Librandi, Apr 06 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 28 2001
EXTENSIONS
Edited by N. J. A. Sloane at the suggestion of Andrew S. Plewe, Jun 08 2007
STATUS
approved