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.

A240552 Greatest prime factor of n^9+1.

Original entry on oeis.org

2, 19, 37, 109, 5167, 46441, 117307, 87211, 530713, 52579, 590077, 1801, 937, 132049, 811, 38737, 5653, 465841, 236377, 69481, 613, 5966803, 1117, 7561, 6597973, 102966067, 19927, 102547, 10435069, 120871, 1538083, 18837001, 221401, 745903, 612740917, 55117
Offset: 1

Views

Author

T. D. Noe, Apr 07 2014

Keywords

Crossrefs

Programs

  • Mathematica
    Table[FactorInteger[n^9 + 1][[-1, 1]], {n, 100}]
  • PARI
    a(n) = vecmax(factor(n^9+1)[,1]); \\ Michel Marcus, Dec 17 2017