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.

A128396 Numbers k such that k^2 divides 16^k-1.

Original entry on oeis.org

1, 3, 5, 15, 21, 39, 55, 105, 155, 165, 195, 205, 273, 465, 609, 615, 903, 915, 1155, 1265, 1365, 1705, 2067, 2145, 2255, 2265, 2373, 2667, 3045, 3081, 3255, 3795, 4305, 4515, 4895, 4965, 5115, 6045, 6123, 6355, 6405, 6765, 7077, 7455, 7917, 7995, 10065
Offset: 1

Views

Author

Alexander Adamchuk, Mar 01 2007

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[11000],Divisible[16^#-1,#^2]&] (* Harvey P. Dale, Dec 14 2010 *)
    Join[{1},Select[Range[11000],PowerMod[16,#,#^2]==1&]] (* Harvey P. Dale, Mar 16 2022 *)