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!)
A265974 Expansion of Product_{k>=1} 1/(1 - 3*k*x^k). 4
1, 3, 15, 54, 210, 699, 2484, 7995, 26610, 84186, 269940, 839238, 2634579, 8098194, 25032282, 76388265, 233791104, 709501596, 2157488730, 6523204836, 19747491810, 59558682132, 179762506329, 541222906812, 1630300772106, 4902697929306, 14748249476553 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ c * 3^n, where c = Product_{m>=2} 1/(1 - m/3^(m-1)) = 5.86277744540963226378877460838259757442241952947887939654316926419876...
MAPLE
b:= proc(n, i) option remember; `if`(n=0 or i=1,
3^n, b(n, i-1) +i*3*b(n-i, min(n-i, i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..32); # Alois P. Heinz, Aug 23 2019
MATHEMATICA
nmax=40; CoefficientList[Series[Product[1/(1-3*k*x^k), {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A286986 A261565 A085480 * A099581 A026696 A082708
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Dec 19 2015
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 30 06:07 EDT 2024. Contains 372122 sequences. (Running on oeis4.)