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!)
A136508 G.f.: A(x) = Sum_{n>=0} (-1)^n * log(1 - x - 2^n*x^2)^n / n! . 3
1, 1, 3, 7, 23, 81, 361, 1923, 13113, 114433, 1315783, 20286135, 420198791, 12003852369, 464295025509, 25153926114307, 1847231277588405, 191568316434991857, 26902669460380225411, 5357197471644242149975 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MATHEMATICA
With[{m = 30}, CoefficientList[Series[Sum[(-1)^j*Log[1 -x -2^j*x^2]^j/j!, {j, 0, m+2}], {x, 0, m}], x]] (* G. C. Greubel, Mar 15 2021 *)
PROG
(PARI) {a(n)=polcoeff(sum(i=0, n, (-1)^i*log(1-x-2^i*x^2 +x*O(x^n))^i/i!), n)}
(Magma)
m:=30; R<x>:=PowerSeriesRing(Rationals(), m);
Coefficients(R!( (&+[(-1)^j*Log(1-x-2^j*x^2)^j/Factorial(j) : j in [0..m+2]]) )); // G. C. Greubel, Mar 15 2021
(Sage)
def A136508_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( sum((-1)^j*log(1-x -2^j*x^2)^j/factorial(j) for j in (0..32)) ).list()
A136508_list(30) # G. C. Greubel, Mar 15 2021
CROSSREFS
Sequence in context: A104088 A169650 A346771 * A184935 A099152 A289317
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 01 2008
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 May 3 20:19 EDT 2024. Contains 372222 sequences. (Running on oeis4.)