OFFSET
1,1
COMMENTS
For definitions see A152658, of which this is a subsequence.
LINKS
Klaus Brockhaus, Table of n, a(n) for n=1..1000
EXAMPLE
First maximal chain of primes with four members (three links) is 13, 17, 19, 23; the linking primes are 197, 271, 359.
PROG
(PARI) {n=1; while(n<13900, c=0; a=prime(n); while(isprime(n*prime(n)+(n+1)*prime(n+1)), c++; n++); if(c==3, print1(a, ", ")); n++)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Dec 17 2008
STATUS
approved