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!)
A078801 Expansion of Gaussian product of arithmetic mean and Lehmer mean evaluated at 1 + 4*x. 0
1, 2, 2, -4, 10, -28, 76, -184, 378, -620, 708, -328, -36, -4008, 25960, -83984, 135066, 188788, -2232236, 9070040, -23335660, 29933128, 69732568, -630906096, 2551027132, -7193660232, 13576199192, -5110303664, -92186317112 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
J. M. Borwein and P. B. Borwein, Pi and the AGM, Wiley, 1987, p. 265-266, Exercise 7.
LINKS
FORMULA
G.f.: A(x) satisfies A(x) = (1 + 2*x) * A(x^2 / (1 + 2*x)^2), A(0) = 1.
a(n) = (-1)^n * Sum_{k>0} 2^(n - 2*k) * a(k) * binomial(n-2, n-2*k), n>1.
EXAMPLE
1 + 2*x + 2*x^2 - 4*x^3 + 10*x^4 - 28*x^5 + 76*x^6 - 184*x^7 + ...
PROG
(PARI) {a(n) = local(A, m); if( n<0, 0, m=1; A = 1 + O(x); while( m<=n, m*=2; A = (1 + 2*x) * subst(A, x, x^2 / (1 + 2*x)^2)); polcoeff(A, n))}
CROSSREFS
Sequence in context: A132824 A298898 A339830 * A309159 A002420 A284016
KEYWORD
sign,easy
AUTHOR
Michael Somos, Dec 05 2002
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 25 12:15 EDT 2024. Contains 371969 sequences. (Running on oeis4.)