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.

A128399 Numbers k such that k^2 divides 19^k-1.

Original entry on oeis.org

1, 2, 3, 4, 6, 9, 10, 12, 18, 20, 30, 36, 42, 60, 84, 90, 110, 126, 156, 180, 210, 220, 252, 294, 330, 381, 420, 468, 588, 630, 660, 724, 762, 780, 882, 930, 990, 1092, 1143, 1260, 1332, 1470, 1510, 1524, 1764, 1806, 1830, 1860, 1980, 2028, 2058, 2172, 2286, 2310
Offset: 1

Views

Author

Alexander Adamchuk, Mar 01 2007

Keywords

Crossrefs

Programs

  • Mathematica
    Join[{1},Select[Range[3000],PowerMod[19,#,#^2]==1&]] (* Harvey P. Dale, Oct 24 2017 *)
  • PARI
    for(k=1, 1e4, if(Mod(19, k^2)^k==1, print1(k", "))) \\ Seiichi Manyama, Mar 25 2020