A254795 Numerators of the convergents of the generalized continued fraction 2 + 1^2/(4 + 3^2/(4 + 5^2/(4 + ... ))).
2, 9, 54, 441, 4410, 53361, 747054, 12006225, 216112050, 4334247225, 95353438950, 2292816782025, 59613236332650, 1671463434096225, 50143903022886750, 1606276360166472225, 54613396245660055650, 1967688541203928475625, 74772164565749282073750
Offset: 0
Programs
-
Maple
a[0] := 2: a[1] := 9: for n from 2 to 18 do a[n] := 4*a[n-1] + (2*n-1)^2*a[n-2] end do: seq(a[n], n = 0 .. 18);
Comments