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.

A139091 a(n) = largest prime divisor of the number prime(n)!/9 + 1.

Original entry on oeis.org

17, 827, 22319071, 1718296754087, 35662591735219, 477262171871, 1609727002420791262479701, 146215297537890243023, 2020914387433686758547638152441, 1073774770807266077323
Offset: 4

Views

Author

Artur Jasinski, Apr 08 2008

Keywords

Crossrefs

Programs

  • Mathematica
    a = {}; Do[w = FactorInteger[(Prime[n]! + 9)/9]; AppendTo[a, Last[w][[1]]], {n, 4, 16}]; a