A088783 Numbers n such that 10*n^k + 1 is composite for all k > 0.
12, 23, 32, 34, 45, 56, 65, 67, 78, 89, 98, 100, 111, 122, 131, 133, 144, 155, 164, 166, 177
Offset: 1
Links
- Gary Barnes, Sierpinski conjectures and proofs
- Chris K. Caldwell, The Prime Database: 10*173^264234 + 1
Programs
-
PARI
for(n=2,10^3,if(n%11==1||n%33==32,print1(n,", ");next());for(k=1,+oo,ispseudoprime(10*n^k+1)&&next(2))) \\ Jeppe Stig Nielsen, Apr 30 2018
Formula
n = 11m+1 and n = 33m-1 for m > 0.
Extensions
a(21) from Jeppe Stig Nielsen, Apr 30 2018
Comments