OFFSET
0,2
COMMENTS
Also, the inverse of the fraction where the numerator is (...(1/2)/3...)/n = 1/n! and the denominator is (n+1)/(n/(.../(2/1)...)), sometimes written in a diamond shape with each of the numbers as 1+...+1, cf. EXAMPLE.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..449
FORMULA
a(n) = (n+1)!*(n-1)! / a(n-1) for n > 0.
a(2n+1) = A002474(n).
EXAMPLE
For n >= 1, the terms are the inverse of the fractions
1 1 1 1
----- = --- ; --- ---
1+1 2 1+1 1/2 1 1+1
--- ------- = ----- = --- ; -----
1 1+1+1 3/2 3 1+1+1 (1/2)/3 1/6
----- --------- = --------- = ----- = 1/16, etc.
1+1 1+1+1+1 4/(3/2) 8/3
--- -------
1 1+1+1
-----
1+1
---
1
MATHEMATICA
FoldList[(#2+1)!*(#2-1)!/# &, 1, Range[25]] (* Paolo Xausa, Jun 11 2026 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Jun 05 2026
STATUS
approved
