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.

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

Original entry on oeis.org

2, 23, 11, 7, 10, 19, 57, 17, 14, 15, 614, 13, 34
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

a(14) > 10^15. - Max Alekseyev, Apr 14 2012

Crossrefs

Programs

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