cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A247205 Numbers k such that 2*k^2 - 1 divides 2^k - 1.

Original entry on oeis.org

1, 18480, 8388480
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Nov 30 2014

Keywords

Comments

a(4) > 2*10^10. - Chai Wah Wu, Dec 06 2014

Examples

			1 is in this sequence because 2*1^2 - 1 = 1 divides 2^1 - 1 = 1.
		

Crossrefs

Programs

  • 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

Extensions

a(3) from Joerg Arndt, Nov 30 2014
Showing 1-1 of 1 results.