login
A256860
a(n) = n*(n + 1)*(n + 2)*(n + 3)*(n^2 - n + 5)/120.
1
1, 7, 33, 119, 350, 882, 1974, 4026, 7623, 13585, 23023, 37401, 58604, 89012, 131580, 189924, 268413, 372267, 507661, 681835, 903210, 1181510, 1527890, 1955070, 2477475, 3111381, 3875067, 4788973, 5875864, 7161000, 8672312, 10440584, 12499641, 14886543
OFFSET
1,2
COMMENTS
This is the case k = n of b(n,k) = n*(n+1)*(n+2)*(n+3)*(k*(n-1)+5)/120, where b(n,k) is the n-th hypersolid number in 5 dimensions generated from an arithmetical progression with the first term 1 and common difference k (see Sardelis et al. paper).
LINKS
D. A. Sardelis and T. M. Valahas, On Multidimensional Pythagorean Numbers, arXiv:0805.4070v1 [math.GM], 2008.
FORMULA
G.f.: x*(1 + 5*x^2)/(1 - x)^7.
a(n) = 5*A000579(n+3) + A000579(n+5). [Bruno Berselli, Apr 15 2015]
MATHEMATICA
Table[n (n + 1) (n + 2) (n + 3) (n^2 - n + 5)/120, {n, 40}]
PROG
(PARI) vector(40, n, n*(n+1)*(n+2)*(n+3)*(n^2-n+5)/120) \\ Bruno Berselli, Apr 15 2015
CROSSREFS
Cf. A000579.
Cf. similar sequences listed in A256859.
Sequence in context: A213131 A100855 A375883 * A221036 A338232 A000605
KEYWORD
nonn,easy
AUTHOR
Luciano Ancora, Apr 14 2015
STATUS
approved