OFFSET
1,1
COMMENTS
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000
Tanya Khovanova, Recursive Sequences.
Eric Weisstein's World of Mathematics, Pythagorean Triple.
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = n*60^2.
From Elmo R. Oliveira, Jun 30 2025: (Start)
G.f.: 3600*x/(1-x)^2.
E.g.f.: 3600*x*exp(x).
a(n) = 2*a(n-1) - a(n-2) for n > 2. (End)
EXAMPLE
5^2 + 12^2 = 13^2: 5^2, 12^2 and 13^2 are divisors of 608400 = (13*5*3*2^2)^2, therefore 608400 is a term.
MATHEMATICA
Range[50]*3600 (* Paolo Xausa, Jul 01 2025 *)
PROG
(PARI) my(x='x+O('x^38)); Vec(3600*x/(1-x)^2) \\ Elmo R. Oliveira, Jun 30 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Aug 13 2004
EXTENSIONS
Name clarified by Tanya Khovanova, Jul 05 2021
More terms from Elmo R. Oliveira, Jun 30 2025
STATUS
approved
