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!)
A097183 Main diagonal of triangle A097181, in which the n-th row polynomial R_n(y) is formed from the initial (n+1) terms of g.f. A097182(y)^(n+1), where R_n(1/2) = 8^n for all n>=0. 4
1, 14, 210, 3220, 49910, 778596, 12198004, 191682920, 3019005990, 47633205620, 752604648796, 11904837171864, 188493255221180, 2986893121197160, 47363590921840680, 751502309293205456, 11930099160029636614 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: A(x) = 1/(1-16*x)^(7/8).
a(n) = (n+1)*A097184(n).
a(n) = (n+1) * 16^n * Gamma(n+7/8) / (Gamma(7/8) * Gamma(n+2)). - Vaclav Kotesovec, Feb 09 2014
MAPLE
seq(coeff(series((1-16*x)^(-7/8), x, n+1), x, n), n = 0 ..20); # G. C. Greubel, Sep 17 2019
MATHEMATICA
Table[FullSimplify[(n+1)*16^n*Gamma[n+7/8]/(Gamma[7/8]*Gamma[n+2])], {n, 0, 20}] (* Vaclav Kotesovec, Feb 09 2014 *)
CoefficientList[Series[(1-16*x)^(-7/8), {x, 0, 20}], x] (* G. C. Greubel, Sep 17 2019 *)
PROG
(PARI) a(n)=polcoeff(1/(1-16*x+x*O(x^n))^(7/8), n, x)
(Magma) R<x>:=PowerSeriesRing(Rationals(), 20); Coefficients(R!( (1-16*x)^(-7/8) )); // G. C. Greubel, Sep 17 2019
(Sage)
def A097183_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P((1-16*x)^(-7/8)).list()
A097183_list(20) # G. C. Greubel, Sep 17 2019
CROSSREFS
Sequence in context: A160682 A097261 A158555 * A004369 A239284 A241260
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 03 2004
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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)