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!)
A135071 a(n) = [x^(2^n+n-2)] (x + x^2 + x^4 + x^8 + ... + x^(2^n))^n /(n*(n-1)/2) for n>=2. 4
1, 1, 3, 7, 40, 236, 1876, 9948, 147880, 1453960, 22015900, 208197540, 4313645260, 50025596492, 908013578304, 10257540119128, 410662921858728, 7157148265575464, 196798065310375948, 3119117728942974484 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,3
LINKS
FORMULA
a(n) = A135070(n)/[n(n-1)/2] for n>=2.
MATHEMATICA
f[x_, n_] := (1/Binomial[n, 2])*(Sum[x^(2^k), {k, 0, n}])^n; Table[Coefficient[f[x, n], x^(2^n + n - 2)] , {n, 2, 10}] (* G. C. Greubel, Sep 22 2016 *)
PROG
(PARI) {a(n)=if(n<2, 0, polcoeff(sum(j=0, n, x^(2^j)+O(x^(2^n+n)))^n, 2^n+n-2)/(n*(n-1)/2))}
CROSSREFS
Sequence in context: A018942 A018943 A019024 * A096219 A128647 A071730
KEYWORD
nonn,easy
AUTHOR
Paul D. Hanna, Nov 17 2007
EXTENSIONS
a(15)-a(19) from Alois P. Heinz, Apr 29 2009
a(20)-a(21) from Max Alekseyev, Jul 25 2009
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)