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.

A061042 Denominator of 1/16 - 1/n^2.

Original entry on oeis.org

1, 400, 144, 784, 64, 1296, 400, 1936, 18, 2704, 784, 3600, 256, 4624, 1296, 5776, 50, 7056, 1936, 8464, 576, 10000, 2704, 11664, 49, 13456, 3600, 15376, 1024, 17424, 4624, 19600, 81, 21904, 5776, 24336, 1600, 26896, 7056, 29584
Offset: 4

Views

Author

N. J. A. Sloane, May 26 2001

Keywords

Crossrefs

See A061041 for comments, references, links.

Programs

  • Haskell
    import Data.Ratio ((%), denominator)
    a061042 n = denominator (1%16 - 1%n^2)  -- Reinhard Zumkeller, May 30 2012
    
  • Mathematica
    Denominator/@(1/16-1/Range[4,50]^2) (* Harvey P. Dale, May 14 2011 *)
  • PARI
    a(n)=denominator(1/16 - 1/n^2) \\ Charles R Greathouse IV, Feb 07 2017

Formula

a(n) = 16*n^2 / gcd(16*n^2, n^2-16). - Colin Barker, Jan 13 2014