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!)
A298799 Expansion of (1-27*x)^(-1/9). 4
1, 3, 45, 855, 17955, 398601, 9167823, 216098685, 5186368440, 126201632040, 3104560148184, 77049538223112, 1926238455577800, 48452305767226200, 1225151160114148200, 31118839466899364280, 793530406405933789140, 20305042752151835192700 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Conjecture: a(p*n) == a(n) (mod p^2) for prime p == 1 (mod 9) and all positive integers n except those n of the form n = m*p + k for 0 <= m <= (p-1)/9 and 1 <= k <= (p-1)/9. Cf. A034171, A004981 and A004982. - Peter Bala, Dec 23 2019
LINKS
FORMULA
a(n) = 3^n/n! * Product_{k=0..n-1} (9*k + 1) for n > 0.
a(n) ~ 3^(3*n) / (Gamma(1/9) * n^(8/9)). - Vaclav Kotesovec, Jun 23 2018
From Peter Luschny, Dec 26 2019: (Start)
a(n) = (-27)^n*binomial(-1/9, n).
a(n) = n! * [x^n] hypergeom([1/9], [1], 27*x). (End)
D-finite with recurrence: n*a(n) +3*(-9*n+8)*a(n-1)=0. - R. J. Mathar, Jan 20 2020
MAPLE
seq(coeff(series((1-27*x)^(-1/9), x, n+1), x, n), n=0..20); # Muniru A Asiru, Jun 23 2018
# Alternative:
A298799 := n -> (-27)^n*binomial(-1/9, n):
seq(A298799(n), n=0..17); # Peter Luschny, Dec 26 2019
PROG
(PARI) N=20; x='x+O('x^N); Vec((1-27*x)^(-1/9))
(GAP) List([0..20], n->(3^n/Factorial(n))*Product([0..n-1], k->9*k+1)); # Muniru A Asiru, Jun 23 2018
CROSSREFS
(1-b*x)^(-1/A003557(b)): A000984 (b=4), A004981 (b=8), A004987 (b=9), A098658 (b=12), A224881 (b=16), A034688 (b=25), this sequence (b=27), A004993 (b=36), A034835 (b=49).
Sequence in context: A124487 A266698 A132303 * A202437 A008931 A036278
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 22 2018
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 23 05:09 EDT 2024. Contains 371906 sequences. (Running on oeis4.)