OFFSET
0,3
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (7,-21,35,-35,21,-7,1).
MATHEMATICA
PolygonalNumber[Binomial[Range[2, 50], 3]] (* Paolo Xausa, Jul 22 2024 *)
PROG
(PARI) a(n)=n*(n+1)*(n+2)*(n+3)*(n^2+2)/72 \\ Charles R Greathouse IV, Jul 10 2024
(Python)
from math import comb
def A373733(n): return comb(comb(n+2, 3)+1, 2) # Chai Wah Wu, Jul 10 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
J.S. Seneschal, Jun 17 2024
STATUS
approved