OFFSET
1,1
COMMENTS
One might call them Fibonacci-type primes.
LINKS
T. D. Noe, Table of n, a(n) for n=1..100
EXAMPLE
a(6)-a(5) = 53-31 = 22 is a multiple of 11 = a(4).
PROG
(PARI) l=2; h=3; print("2, 3, "); while(l<2^128, t=l+h; while(!isprime(t), t+=l); print1(t, ", "); l=h; h=t)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 11 2002
EXTENSIONS
More terms from Phil Carmody, Aug 15 2002
STATUS
approved