login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A181763
a(n) = A061037(n)^2.
1
0, 25, 9, 441, 4, 2025, 225, 5929, 36, 13689, 1225, 27225, 144, 48841, 3969, 81225, 400, 127449, 9801, 190969, 900, 275625, 20449, 385641, 1764, 525625, 38025, 700569, 3136, 915849, 65025, 1177225, 5184, 1490841, 104329, 1863225, 8100
OFFSET
2,2
COMMENTS
A061038(n)/a(n+2) for n >= 2 gives the reduced fractions 1/9, 4/49, 4, 4/81, 1/25, 4/121, 16/9, 4/169, ...
LINKS
FORMULA
Sum_{n>=3} 1/a(n) = 79*Pi^2/192 - 65/18. - Amiram Eldar, Aug 14 2022
MATHEMATICA
A061037[n_] := Numerator[(n - 2)*(n + 2)/(4 n^2)]; Table[A061037[n]^2, {n, 2, 100}] (* G. C. Greubel, Sep 19 2018 *)
PROG
(Magma) A061037:=func< n | Numerator(1/4-1/n^2) >; A181763:=func< n | A061037(n)^2 >; [ A181763(n): n in [2..50] ]; // Klaus Brockhaus, Jan 09 201
(PARI) a(n) = numerator((n-2)*(n+2)/(4*n^2));
for(n=2, 100, print1(a(n)^2, ", ")) \\ G. C. Greubel, Sep 19 2018
CROSSREFS
Sequence in context: A215539 A224490 A226224 * A171638 A217432 A040604
KEYWORD
nonn
AUTHOR
Paul Curtz, Nov 14 2010
STATUS
approved