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!)
A260971 Expansion of phi_0(-q) in powers of q where phi_0() is a 5th-order mock theta function. 1
1, -1, 1, 0, 1, -1, 0, -1, 1, -1, 1, 0, 1, -1, 1, -1, 1, -2, 1, -1, 1, -1, 1, -1, 2, -2, 2, -1, 2, -2, 1, -2, 2, -2, 2, -2, 2, -3, 2, -2, 3, -3, 3, -2, 3, -3, 3, -3, 3, -4, 4, -3, 4, -4, 3, -4, 4, -5, 4, -4, 5, -5, 5, -5, 6, -6, 5, -5, 6, -6, 6, -6, 7, -7, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,18
LINKS
FORMULA
G.f.: Sum_{k >= 0} (-x)^n^2 * (1 - x) * (1 - x^3) * ... * (1 - x^(2*k-1)).
a(n) = (-1)^n * A053258(n) = 2 * A053264(n) - A053262(n).
a(n) ~ (-1)^n * sqrt(phi) * exp(Pi*sqrt(n/30)) / (2*5^(1/4)*sqrt(n)), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, Jun 15 2019
EXAMPLE
G.f. = 1 - x + x^2 + x^4 - x^5 - x^7 + x^8 - x^9 + x^10 + x^12 - x^13 + ...
G.f. = q^-1 - q^119 + q^239 + q^479 - q^599 - q^839 + q^959 - q^1079 + ...
MATHEMATICA
a[n_]:= SeriesCoefficient[Sum[(-x)^( k^2)*Product[1 - x^(2*j - 1), {j, 1, k}], {k, 0, Sqrt[n]}], {x, 0, n}]; Table[a[n], {n, 0, 50}] (* G. C. Greubel, Aug 01 2018 *)
PROG
(PARI) {a(n) = if( n<0, 0, polcoeff( sum(k=0, sqrtint(n), (-x)^k^2 * prod(i=1, k, 1 - x^(2*i - 1), 1 + x * O(x^(n - k^2)))), n))};
CROSSREFS
Sequence in context: A031262 A047072 A178058 * A053258 A350738 A053632
KEYWORD
sign
AUTHOR
Michael Somos, Aug 06 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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)