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.

A061048 Denominator of 1/49 - 1/n^2.

Original entry on oeis.org

1, 3136, 3969, 4900, 5929, 7056, 8281, 196, 11025, 12544, 14161, 15876, 17689, 19600, 441, 23716, 25921, 28224, 30625, 33124, 35721, 784, 41209, 44100, 47089, 50176, 53361, 56644, 1225, 63504, 67081, 70756, 74529, 78400, 82369
Offset: 7

Views

Author

N. J. A. Sloane, May 26 2001

Keywords

Crossrefs

Cf. A061047 (numerator).

Programs

  • Mathematica
    Table[Denominator[1/7^2 - 1/n^2], {n, 7, 50}] (* G. C. Greubel, Jul 07 2017 *)
  • PARI
    for(n=7,50, print1(denominator(1/7^2 - 1/n^2), ", ")) \\ G. C. Greubel, Jul 07 2017