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.

A048846 Least positive integer k for which 29^n divides k!.

Original entry on oeis.org

1, 29, 58, 87, 116, 145, 174, 203, 232, 261, 290, 319, 348, 377, 406, 435, 464, 493, 522, 551, 580, 609, 638, 667, 696, 725, 754, 783, 812, 841, 841, 870, 899, 928, 957, 986, 1015, 1044, 1073, 1102, 1131, 1160, 1189, 1218, 1247, 1276
Offset: 0

Views

Author

Charles T. Le (charlestle(AT)yahoo.com)

Keywords

Crossrefs

See A007843 for more information.

Programs

  • Mathematica
    f[n_]:=Module[{k=1},While[!Divisible[k!,29^n],k++];k]; Array[f,50,0] (* Harvey P. Dale, Sep 04 2011 *)