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!)
A259276 G.f.: A(x) = exp( Sum_{n>=1} 6^n * x^n/(n*(1+x^n)) ). 4
1, 6, 30, 186, 1110, 6630, 39846, 239010, 1433910, 8603790, 51622446, 309733890, 1858404990, 11150428470, 66902565630, 401415404586, 2408492418870, 14450954480790, 86705726950470, 520234361647890, 3121406169699270, 18728437018590366, 112370622111206670, 674223732666113010 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Compare to: exp( Sum_{n>=1} x^n/(1+x^n)/n ) = Sum_{n>=0} x^(n*(n+1)/2).
In general, for m > 1, if g.f. = exp(Sum_{k>=1} m^k * x^k/(k*(1+x^k))) then a(n) ~ 2 * m^(n - 1/8) / EllipticTheta(2, 0, 1/sqrt(m)). - Vaclav Kotesovec, Apr 18 2024
LINKS
FORMULA
G.f.: -1/5 + (6/5)/(1+x - 6*x/(1+x^2 - 6*x^2/(1+x^3 - 6*x^3/(1+x^4 - 6*x^4/(1+x^5 - 6*x^5/(1+x^6 - 6*x^6/(1+x^7 - 6*x^7/(1+x^8 - 6*x^8/(...))))))))), a continued fraction.
G.f.: A(x) = (1 + x*B(x))/(1 - 5*x*B(x)), where B(x) = (1 + x^2*C(x))/(1 - 5*x^2*C(x)), C(x) = (1 + x^3*D(x))/(1 - 5*x^3*D(x)), D(x) = (1 + x^4*E(x))/(1 - 5*x^4*E(x)), ...
a(n) ~ c * 6^n, where c = 2^(7/8) / (3^(1/8) * EllipticTheta(2, 0, 1/sqrt(6))) = 0.8537393061385536395511385858124987202486847622399194... - Vaclav Kotesovec, Oct 18 2020, updated Apr 18 2024
EXAMPLE
G.f.: A(x) = 1 + 6*x + 30*x^2 + 186*x^3 + 1110*x^4 + 6630*x^5 +...
such that
log(A(x)) = 6*x/(1+x) + 6^2*x^2/(2*(1+x^2)) + 6^3*x^3/(3*(1+x^3)) + 6^4*x^4/(4*(1+x^4)) + 6^5*x^5/(5*(1+x^5)) +...
MATHEMATICA
nmax = 30; CoefficientList[Series[Exp[Sum[6^k * x^k / (1 + x^k)/k, {k, 1, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Oct 18 2020 *)
PROG
(PARI) {a(n)=if(n==0, 1, polcoeff(exp(sum(m=1, n, 6^m*x^m/(1+x^m+x*O(x^n))/m)), n))}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=(1 + x^(n+1-i)*A)/(1 - 5*x^(n+1-i)*A+ x*O(x^n))); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A029571 A357599 A368524 * A109501 A239488 A147517
KEYWORD
nonn,changed
AUTHOR
Paul D. Hanna, Jun 23 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 18 11:42 EDT 2024. Contains 371779 sequences. (Running on oeis4.)