A263539 Smallest odd prime of the form k*a(n-1)*a(n-2)*...*a(1) + 2.
3, 5, 17, 257, 65537, 73014444017, 7839866227890585600377, 90965983657404652017189201081165598949585237, 59265532390032181385721703100931439246761487956490653915298719426194939212611074425177277
Offset: 1
Keywords
Programs
-
PARI
terms=12; p=1; for(n=1, terms, q=p+2; while(!ispseudoprime(q), q+=2*p); print1(q, ", "); p*=q)
Comments