OFFSET
1,2
FORMULA
For n >=4, r(n) = -(2n-1)*(2n-3)/(n(n-2) r(n-1)).
EXAMPLE
The 4th triangular number, 10, equals 1 +(1/2 +1/(-10/3 +16/21)).
The 5th triangular number, 15, equals 1 +(1/2 +1/(-10/3 +1/(21/16 -5/16))).
MAPLE
L2cfrac := proc(L, targ) local a, i; a := targ ; for i from 1 to nops(L) do a := 1/(a-op(i, L)) ; od: end: A128537 := proc(nmax) local b, n, bnxt; b := [1] ; for n from nops(b)+1 to nmax do bnxt := L2cfrac(b, n*(n+1)/2) ; b := [op(b), bnxt] ; od: [seq( denom(b[i]), i=1..nops(b))] ; end: A128537(26) ; # R. J. Mathar, Oct 09 2007
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Leroy Quet, Mar 09 2007
EXTENSIONS
More terms from R. J. Mathar, Oct 09 2007
STATUS
approved