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!)
A346847 E.g.f.: log(1 + x) / (1 - x)^5. 2
1, 9, 77, 694, 6774, 71820, 826020, 10265040, 137275920, 1967222880, 30092580000, 489584390400, 8443643040000, 153903497126400, 2956596769728000, 59712542813952000, 1264947863784192000, 28047600771531264000, 649672514944814592000, 15692497566512836608000, 394613964462556016640000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n! * Sum_{k=1..n} (-1)^(k+1) * binomial(n-k+4,4) / k.
a(n) ~ log(2) * n^4 * n! / 24. - Vaclav Kotesovec, Aug 06 2021
MATHEMATICA
nmax = 21; CoefficientList[Series[Log[1 + x]/(1 - x)^5, {x, 0, nmax}], x] Range[0, nmax]! // Rest
Table[n! Sum[(-1)^(k + 1) Binomial[n - k + 4, 4]/k , {k, 1, n}], {n, 1, 21}]
PROG
(PARI) my(x='x+O('x^25)); Vec(serlaplace(log(1+x)/(1-x)^5)) \\ Michel Marcus, Aug 06 2021
CROSSREFS
Sequence in context: A126631 A190981 A254659 * A355372 A046150 A124131
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 05 2021
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 July 8 07:43 EDT 2024. Contains 374148 sequences. (Running on oeis4.)