A278932 Numbers n such that n remains prime through 6 iterations of function f(x) = 2x + 1.
1122659, 2164229, 2329469, 10257809, 10309889, 12314699, 14030309, 14145539, 19099919, 23103659, 24176129, 28843649, 37088729, 38199839, 42389519, 49160099, 50785439, 52554569, 62800169, 68718059, 85864769, 88174049, 95831189, 105109139, 105388169
Offset: 1
Keywords
Programs
-
PARI
a005408(n) = 2*n+1 count(n) = my(k=n, i=0); while(ispseudoprime(k), k=a005408(k); i++); i is(n) = count(n) > 6 \\ Felix Fröhlich, Dec 05 2016
Comments