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.

A066444 a(n) = 11^n mod n^11.

Original entry on oeis.org

0, 121, 1331, 14641, 161051, 1771561, 19487171, 214358881, 2357947691, 25937424601, 0, 166394893969, 471664657228, 3140272804489, 8065845196901, 16532101601985, 5101754322287, 57157537871161, 73663224996225, 17332560009201, 240252754633991, 96720656337129, 29113945750083
Offset: 1

Views

Author

Robert G. Wilson v, Dec 27 2001

Keywords

Crossrefs

Cf. A066606.

Programs

  • Mathematica
    Table[ Mod[11^n, n^11], {n, 1, 20} ]
  • PARI
    a(n) = { lift(Mod(11, n^11)^n) } \\ Harry J. Smith, Feb 14 2010