OFFSET
0,3
LINKS
D. Lim, J. Robinson, S. Jegelka, and H. Maron, Expressive Sign Equivariant Networks for Spectral Geometric Learning, Conference on Neural Information Processing Systems (NeurIPS), 2023. See Table 4 at p. 24.
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
a(n) = (1/2^n) * Sum_{s in {-1,1}^n} (s_1 + s_2 + ... + s_n)^6 [from Proposition 7 of Lim et al.]. - Sean A. Irvine, Jul 14 2024
From Alois P. Heinz, Jul 14 2024: (Start)
a(n) = 2^(-n) * Sum_{k=0..n} (2*k-n)^6 * binomial(n,k).
G.f.: x*(61*x^2+28*x+1)/(x-1)^4.
a(n) = 15*n^3 - 30*n^2 + 16*n. (End)
E.g.f.: exp(x)*x*(1 + 15*x + 15*x^2). - Stefano Spezia, Jul 15 2024
MAPLE
a:= n-> ((15*n-30)*n+16)*n:
seq(a(n), n=0..37); # Alois P. Heinz, Jul 14 2024
PROG
(Python)
def A370649(n): return n*(15*(n-1)**2+1) # Chai Wah Wu, Jul 15 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Derek Lim, Feb 25 2024
EXTENSIONS
a(21)-a(33) from Sean A. Irvine, Jul 14 2024
a(34)-a(37) from Alois P. Heinz, Jul 14 2024
STATUS
approved