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.

A127101 Numbers k such that k^2 divides 9^k - 1.

Original entry on oeis.org

1, 2, 4, 8, 10, 20, 40, 110, 136, 164, 220, 328, 440, 610, 680, 820, 1210, 1220, 1544, 1640, 2420, 2440, 2530, 4840, 5060, 5576, 6710, 7370, 7480, 7720, 9020, 10120, 11810, 13420, 13612, 14008, 14740, 18040, 18632, 19580
Offset: 1

Views

Author

Alexander Adamchuk, Jan 05 2007

Keywords

Crossrefs

Subset of A068382 (numbers k such that k divides 9^k - 1).

Programs

  • Mathematica
    Select[Range[20000], IntegerQ[(PowerMod[9, #, #^2 ]-1)/#^2 ]&]
  • PARI
    is(k) = Mod(9, k^2)^k == 1; \\ Amiram Eldar, May 21 2024