login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A247205
Numbers k such that 2*k^2 - 1 divides 2^k - 1.
1
1, 18480, 8388480
OFFSET
1,2
COMMENTS
a(4) > 2*10^10. - Chai Wah Wu, Dec 06 2014
EXAMPLE
1 is in this sequence because 2*1^2 - 1 = 1 divides 2^1 - 1 = 1.
PROG
(Magma) [n: n in [1..100000] | Denominator((2^n-1)/(2*n^2-1)) eq 1];
(PARI) for(n=1, 10^9, if(Mod(2, 2*n^2-1)^n==+1, print1(n, ", "))); \\ Joerg Arndt, Nov 30 2014
CROSSREFS
Sequence in context: A209895 A190110 A157738 * A173274 A237012 A031817
KEYWORD
nonn,more,bref
AUTHOR
EXTENSIONS
a(3) from Joerg Arndt, Nov 30 2014
STATUS
approved