OFFSET
0,1
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..250
Sam Wagstaff, Cunningham Project, Factorizations of 2^n+1, n odd, n<1200
MATHEMATICA
a = {1}; Do[ d = Divisors[ 2^n + 1 ]; l = Length[ d ]; c = 0; k = 1; While[ k < l + 1, If[ Union[ GCD[ a, d[ [ k ] ] ] ] == {1}, c++ ]; k++ ]; Print[ c ]; a = Union[ Flatten[ Append[ a, Transpose[ FactorInteger[ 2^n + 1 ] ][ [ 1 ] ] ] ] ], {n, 0, 100} ]
PROG
(PARI) { allocatemem(932245000); for (n=0, 250, d=divisors(2^n + 1); l=length(d); a=0; for (i=1, l, t=1; for (m=1, n - 1, p=2^m + 1; if (gcd(d[i], p)!=1, t=0; break)); if (t, a++)); write("b064130.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 08 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 10 2001
EXTENSIONS
Definition corrected from 12^m + 1 to 2^m + 1 by Harry J. Smith, Sep 08 2009
STATUS
approved