OFFSET
0,3
COMMENTS
Equals the powers of 2 convolved with the aerated triangular numbers, [1, 0, 3, 0, 6, 0, 10, ...].
a(n) = 2*a(n-1) + 3*a(n-2) - 6*a(n-3) - 3*a(n-4) + 6*a(n-5) + a(n-6) - 2*a(n-7), n >= 8.
FORMULA
a(n) = (2^(n+9) - 18*n^2 - 168*n - 406)/432, n odd.
a(n) = (2^(n+9) - 36*n^2 - 264*n - 512)/432, n even.
MATHEMATICA
CoefficientList[Series[x/((1-x^2)^3 (1-2x)), {x, 0, 40}], x] (* Harvey P. Dale, Dec 27 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Enrique Navarrete, Nov 02 2025
EXTENSIONS
Zero prepended in Data field by Harvey P. Dale, Dec 28 2025
Offset changed to match insertion of 0 by Sean A. Irvine, Mar 01 2026
STATUS
approved
