OFFSET
1,2
COMMENTS
Each group can be formed into a triangle.
FORMULA
a(n) = (2*(n-1)^5 + 15*(n-1)^4 + 44*(n-1)^3 + 69*(n-1)^2 + 62*(n-1) + 24)/24. [corrected by Georg Fischer, May 08 2021]
EXAMPLE
(1), (2, 3, 4), (5, 6, 7, 8, 9, 10), (11, 12, 13, 14, 15, 16, 17, 18, 19, 20), ...
MAPLE
seq((2*(n-1)^5 + 15*(n-1)^4 + 44*(n-1)^3 + 69*(n-1)^2 + 62*(n-1) + 24)/24, n=1..33); # Georg Fischer, May 08 2021
MATHEMATICA
tetr[n_] := Binomial[n + 3, 3]; tri[n_] := (n(n + 1)/2); Table[ tri[ tetr[n]] - tri[ tetr[n - 1]], {n, 0, 32}] (* Robert G. Wilson v, Jun 05 2004 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jun 01 2004
EXTENSIONS
Edited and extended by Robert G. Wilson v, Jun 05 2004
STATUS
approved