OFFSET
1,1
COMMENTS
The PARI code given suggests that these values are merely conjectures. - N. J. A. Sloane, Jun 30 2005
Except for the first term, these primes are of the form 10n+9. It follows that 10n+9 + (5+1)^k = 5H not prime for some H for all n and k.
Superset of A030433. [From R. J. Mathar, Aug 24 2008]
PROG
(PARI) pplus2ton(n, m, b) = \defiant primes base b { local(k, s, p, y, flag); s=0; forprime(p=2, n, flag=1; for(k=0, m, y=p+b^k; if(ispseudoprime(y), \ print1(k, ", "); s++; flag=0; break) ); if(flag, print1(p", ")); \search for defiant primes. ); print(); print(s); }
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Jun 27 2005
STATUS
approved