OFFSET
1,1
COMMENTS
Largest prime of sum of three primes are primes of the form p*q - p - q, where p and q are two successive primes (A096345).
EXAMPLE
a(1) = 15 because 15 = 3+5+7 with 3*5 =15;
a(2) = 35 because 35 = 5+7+23 with 5*7=35;
a(3) = 77 because 77 = 7+11+59 with 7*11=77;
a(4) = 221 because 221= 13+17+191 with 13*17=221
PROG
(PARI) lista(nn) = {for (n=1, nn, p = prime(n); q = prime(n+1); prd = p*q; if (isprime(prd - p - q), print1(prd, ", ")); ); } \\ Michel Marcus, Jun 03 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Teofilatto, Aug 17 2005
EXTENSIONS
More terms from Michel Marcus, Jun 03 2013
STATUS
approved