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!)
A361881 Expansion of 1/(1 - 9*x/(1 + x))^(1/3). 2
1, 3, 15, 93, 618, 4278, 30390, 219810, 1611105, 11929395, 89045079, 669018837, 5053759440, 38350056072, 292147584072, 2233020788184, 17117923408746, 131560216858110, 1013413369611606, 7822237588031586, 60487791859818348, 468511159492134516 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (-1)^n * Sum_{k=0..n} 9^k * binomial(-1/3,k) * binomial(n-1,n-k).
a(0) = 1; a(n) = (3/n) * Sum_{k=0..n-1} (-1)^(n-1-k) * (n+2*k) * a(k).
n*a(n) = (7*n-4)*a(n-1) + 8*(n-2)*a(n-2) for n > 1.
a(n) ~ 3^(2/3) * 2^(3*n-1) / (Gamma(1/3) * n^(2/3)). - Vaclav Kotesovec, Mar 28 2023
a(n) = (-1)^(1 - n)*3*hypergeom([1 - n, 4/3], [2], 9) for n >= 1. - Peter Luschny, Mar 30 2023
MAPLE
a := n -> if n = 0 then 1 else (-1)^(1-n)*3*hypergeom([1 - n, 4/3], [2], 9) fi:
seq(simplify(a(n)), n = 0..21); # Peter Luschny, Mar 30 2023
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(1/(1-9*x/(1+x))^(1/3))
CROSSREFS
Cf. A361375.
Sequence in context: A020108 A323696 A231657 * A303558 A193661 A192296
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 28 2023
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 14 17:05 EDT 2024. Contains 374322 sequences. (Running on oeis4.)