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!)
A261565 Expansion of Product_{k>=1} (1/(1 - 3*x^k))^k. 5
1, 3, 15, 54, 201, 672, 2268, 7266, 23208, 72414, 224652, 688929, 2103975, 6386907, 19337091, 58367817, 175905741, 529331190, 1591515297, 4781575074, 14359673454, 43108645230, 129387584991, 388283978589, 1165099808574, 3495782937135, 10488322595625 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
In general, for z > 1 or z < -1, if g.f. = Product_{k>=1} (1/(1 - z*x^k))^k, then a(n) ~ c * z^n, where c = Product_{j>=1} 1/(1 - 1/z^j)^(j+1).
LINKS
FORMULA
a(n) ~ c * 3^n, where c = Product_{j>=1} 1/(1 - 1/3^j)^(j+1) = 4.1269357592430271005054028580646705856298720432004233223482475759761040273...
G.f.: exp( Sum_{n>=1} x^n/n * Sum_{d|n} 3^d * n^2/d^2 ). - Paul D. Hanna, Sep 30 2015
MATHEMATICA
nmax = 40; CoefficientList[Series[Product[(1/(1 - 3*x^k))^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 40; CoefficientList[Series[Exp[Sum[3^k/k*x^k/(1 - x^k)^2, {k, 1, nmax}]], {x, 0, nmax}], x]
PROG
(PARI) {a(n) = polcoeff( exp( sum(m=1, n, x^m/m * sumdiv(m, d, 3^d * m^2/d^2) ) +x*O(x^n)), n)}
for(n=0, 40, print1(a(n), ", ")) \\ Paul D. Hanna, Sep 30 2015
CROSSREFS
Sequence in context: A147618 A290764 A286986 * A085480 A265974 A099581
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 24 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 07:52 EDT 2024. Contains 372127 sequences. (Running on oeis4.)