OFFSET
0,2
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..10000
FORMULA
a(n) = A061042(n), n>=4.
a(n) = LCM[n^2 - 16, 16*n^2]/(n^2 - 16), for n>=5. - G. C. Greubel, Sep 16 2018
MATHEMATICA
Table[If[n == 0, 0, If[n == 4, 16, Denominator[(n^2 - 16)/(4*n)^2]]], {n, 0, 100}] (* G. C. Greubel, Sep 16 2018 *)
PROG
(PARI) for(n=0, 100, print1(if(n==0, 0, if(n==4, 16, denominator((n^2 - 16)/(4*n)^2))), ", ")) \\ G. C. Greubel, Sep 16 2018
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
Paul Curtz, Nov 30 2010
EXTENSIONS
Removed a(-4)-a(-1) since a(-n)=a(n) by G. C. Greubel, Sep 16 2018
STATUS
approved