A281576 Composite Fermat numbers.
4294967297, 18446744073709551617, 340282366920938463463374607431768211457, 115792089237316195423570985008687907853269984665640564039457584007913129639937
Offset: 1
Keywords
Links
- Giuseppe Coppoletta, Table of n, a(n) for n = 1..7
- John H. Jaroma and Kamaliya N. Reddy, Classical and alternative approaches to the Mersenne and Fermat numbers, The American Mathematical Monthly, Vol. 114, No. 8 (2007), pp. 677-687.
- Samuel S. Wagstaff, The Cunningham Project, Complete factoring status (compiled by Wilfrid Keller).
Programs
-
PARI
a152155(n) = centerlift(Mod(3, 2^(2^n)+1)^(2^(2^n-1))) terms(n) = my(i=0, k=1); while(1, if(a152155(k)!=-1, print1(2^(2^k)+1, ", "); i++); if(i==n, break); k++) terms(4) \\ print initial 4 terms
Comments