login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A181546 a(n) = Sum_{k=0..floor(n/2)} C(n-k,k)^4. 6
1, 1, 2, 17, 83, 338, 1923, 11553, 63028, 359203, 2172469, 13026034, 78106885, 478415635, 2957675956, 18321372721, 114301292581, 718253640196, 4531427831111, 28699590926291, 182566373639352, 1165539703613397 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Conjecture: Given F(n,L) = Sum_{k=0..[n/2]} C(n-k,k)^L, then Limit_{n->oo} F(n+1,L)/F(n,L) = (Fibonacci(L)*sqrt(5) + Lucas(L))/2 for L>=0 where Fibonacci(n) = A000045(n) and Lucas(n) = A000032(n).
For this sequence (L=4): Limit a(n+1)/a(n) = (3*sqrt(5)+7)/2 = 6.8541...
LINKS
C. Banderier, P. Hitczenko, Enumeration and asymptotics of restricted compositions having the same number of parts, Disc. Appl. Math. 160 (18) (2012) 2542-2554. Table 1.
EXAMPLE
G.f. A(x) = 1 + x + 2*x^2 + 17*x^3 + 83*x^4 + 338*x^5 + 1923*x^6 +...
The terms begin:
a(0) = a(1) = 1^4;
a(2) = 1^4 + 1^4 = 2;
a(3) = 1^4 + 2^4 = 17;
a(4) = 1^4 + 3^4 + 1^4 = 83;
a(5) = 1^4 + 4^4 + 3^4 = 338;
a(6) = 1^4 + 5^4 + 6^4 + 1^4 = 1923;
a(7) = 1^4 + 6^4 + 10^4 + 4^4 = 11553; ...
MATHEMATICA
Table[Sum[Binomial[n-k, k]^4, {k, 0, Floor[n/2]}], {n, 0, 30}] (* Harvey P. Dale, May 22 2021 *)
PROG
(PARI) {a(n)=sum(k=0, n\2, binomial(n-k, k)^4)}
CROSSREFS
Cf. variants: A181545, A181547, A051286.
Sequence in context: A309029 A079889 A053786 * A320644 A081744 A372189
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 29 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 9 00:38 EDT 2024. Contains 372341 sequences. (Running on oeis4.)