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.

A061044 Denominator of 1/25 - 1/n^2.

Original entry on oeis.org

1, 900, 1225, 1600, 2025, 100, 3025, 3600, 4225, 4900, 225, 6400, 7225, 8100, 9025, 80, 11025, 12100, 13225, 14400, 625, 16900, 18225, 19600, 21025, 180, 24025, 25600, 27225, 28900, 1225, 32400, 34225, 36100, 38025, 1600, 42025
Offset: 5

Views

Author

N. J. A. Sloane, May 26 2001

Keywords

Crossrefs

See A061041 for comments, references, links.
Cf. A061043 (numerator).

Programs

  • Haskell
    import Data.Ratio ((%), denominator)
    a061044 = denominator . (1 % 25 -) . recip . (^ 2) . fromIntegral
    -- Reinhard Zumkeller, Jan 06 2014
  • Mathematica
    Table[Denominator[1/5^2 - 1/n^2], {n, 7, 50}] (* G. C. Greubel, Jul 07 2017 *)
  • PARI
    a(n) = denominator(1/25 - 1/n^2); \\ Michel Marcus, Aug 15 2013