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.

A128369 a(n) = least k such that the remainder when 29^k is divided by k is n.

Original entry on oeis.org

2, 3, 13, 5, 22, 23, 11, 9, 26, 19, 51, 17, 46, 15, 118, 178523, 152, 92634008921, 102, 24369, 82, 2873, 93, 25, 34, 27, 74, 11227, 31, 39259, 830, 69, 136, 817, 62, 2429, 66, 24351, 802, 121, 184, 3405997613, 714, 45, 398, 5846879, 794, 221, 114
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

a(408) = 9848641373 = 60343 * 163211.
a(756) = 10012502599 = 11 * 19 * 47906711.
a(886) = 12256265747, a(966) = 10085567837. - Daniel Morel, Jun 08 2010
a(378) = 31113438371, a(492) = 18377996647, a(730) = 22778710711. - Daniel Morel, Jul 05 2010
a(802) = 20290196677, a(826) = 21466370573. - Daniel Morel, Aug 24 2010

Crossrefs

Programs

  • Mathematica
    t = Table[0, {10000} ]; k = 1; While[ k < 4000000000, a = PowerMod[29, k, k]; If[a < 10001 && t[[a]] == 0, t[[a]] = k; Print[{a, k}]]; k++ ]; t (* Robert G. Wilson v, Aug 06 2009 *)