Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A122860

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

newer changes | Showing entries 11-20 | older changes
Expansion of (1 - phi(-q)^3 / phi(-q^3)) / 6 in powers of q where phi() is a Ramanujan theta function.
(history; published version)
#11 by Michael Somos at Wed Nov 11 17:20:01 EST 2015
STATUS

editing

approved

#10 by Michael Somos at Wed Nov 11 17:19:34 EST 2015
DATA

1, -2, 1, 1, 0, -2, 2, -2, 1, 0, 0, 1, 2, -4, 0, 1, 0, -2, 2, 0, 2, 0, 0, -2, 1, -4, 1, 2, 0, 0, 2, -2, 0, 0, 0, 1, 2, -4, 2, 0, 0, -4, 2, 0, 0, 0, 0, 1, 3, -2, 0, 2, 0, -2, 0, -4, 2, 0, 0, 0, 2, -4, 2, 1, 0, 0, 2, 0, 0, 0, 0, -2, 2, -4, 1, 2, 0, -4, 2, 0, 1, 0, 0, 2, 0, -4, 0, 0, 0, 0, 4, 0, 2, 0, 0, -2, 2, -6, 0, 1, 0, 0, 2, -4, 0

MATHEMATICA

0a[ n_] := If[ n < 1, 0, -DivisorSum[ n, (-1)^(n/#) JacobiSymbol[ -3, #] &]]; (* Michael Somos, Feb 19 2015 *)

PROG

(PARI) {a(n) = localmy(A); if( n<0, 0, A = x * O(x^n); polcoeff( (1 - eta(x + A)^6 * eta(x^6 + A) / (eta(x^2 + A)^3 * eta(x^3 + A)^2)) / 6, n))};

(PARI) {a(n) = localmy(A, p, e); if( n<1, 0, A = factor(n); prod(k=1, matsize(A)[1], if([p=A[k, 1], , e] = A[k, 2]; if(p==2, (3*(-1)^e - 1) / 2, if(p==3, 1, if(p%6==1, e+1, !(1-e%2)))) )))};

STATUS

approved

editing

Discussion
Wed Nov 11
17:20
Michael Somos: Light and space edits. Cut sequence terms to 260 chars max.
#9 by Michael Somos at Thu Feb 19 15:17:47 EST 2015
STATUS

editing

approved

#8 by Michael Somos at Thu Feb 19 15:17:33 EST 2015
NAME

Expansion of (1 - phi(-q)^3 / phi(-q^3)) / 6 in powers of q where phi() is a Ramanujan theta function.

COMMENTS

Ramanujan theta functions: f(q) := Prod_{k>=1} (1-(-q)^k) (see A121373), phi(q) := theta_3(q) := Sum_{k=-oo..oo} q^(k^2) (A000122), psi(q) := Sum_{k=0..oo} q^(k*(k+1)/2) (A10054), chi(q) := Prod_{k>=0} (1+q^(2k+1)) (A000700).

Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).

Cubic AGM theta functions: a(q) (see A004016), b(q) (A005928), c(q) (A005882).

LINKS

M. Somos, <a href="http://cis.csuohio.edu/~somos.crg4.com/multiq.pdfhtml">Introduction to Ramanujan theta functions</a>

FORMULA

Expansion of (1 + a(q) - 2*a(q^2)) / 6 = (1 - b(q)^2 / b(q^2)) / 6 in powers of q where a(), b() are cubic AGM analog theta functions.

Expansion of (1 - eta(q)^6 * eta(q^6) / (eta(q^2)^3 * eta(q^3)^2)) / 6 in powers of q.

a(3n3*n) = a(4n4*n) = a(n). a(6n6*n + 5) = 0.

G.f.: (1 - Product_{k>0} (1 + x^(3k)) / (1 + x^k)^3 * (1 - x^k)^3 / (1 - x^(3k3*k))) / 6 = Sum_{k>0} -(-x)^k / (1 + x^k + x^(2k2*k)).

G.f.: Sum_{k>0} x^(3*k-2) / (1 + x^(3*k-2)) - x^(3*k-1) / (1 + x^(3*k-1)).

-6 * a(n) = A122859(n) unless n=0. -(-1)^n * a(n) = A113661(n).

EXAMPLE

G.f. = q - 2*q^2 + q^3 + q^4 - 2*q^6 + 2*q^7 - 2*q^8 + q^9 + q^12 + 2*q^13 + ...

MATHEMATICA

0[ n_] := If[ n < 1, 0, -DivisorSum[ n, (-1)^(n/#) JacobiSymbol[ -3, #] &]]; (* Michael Somos, Feb 19 2015 *)

PROG

(PARI) {a(n) = if( n<1, 0, -sumdiv(n, d, (-1)^(n/d) * kronecker(-3, d)))};

(PARI) {a(n) = if( n<1, 0, sumdiv(n, d, (2+(-1)^d) * kronecker(-3, d)))};

(PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( (1 - eta(x + A)^6 * eta(x^6 + A) / (eta(x^2 + A)^3 * eta(x^3 + A)^2)) / 6, n))};

(PARI) {a(n) = if( n<1, 0, direuler(p=2, n, if(p==2, (1 - 2*X) / (1 - X^2), 1 / ((1-X)/ * (1 - kronecker(-3, p)*X))))[n])};

(PARI) {a(n) = local(A, p, e); if( n<1, 0, A = factor(n); prod(k=1, matsize(A)[1], if(p=A[k, 1], e=A[k, 2]; if(p==2, (3*(-1)^e - 1) / 2, if(p==3, 1, if(p%6==1, e+1, !(e%2)))))))};

CROSSREFS

Cf. A113661(n)=-(-1)^n*a(n). A122859(n)=-6*a(n) if n>0.

Cf. A113661, A122859.

STATUS

approved

editing

Discussion
Thu Feb 19
15:17
Michael Somos: Added more info. Light and space edits.
#7 by Joerg Arndt at Mon Dec 29 03:27:59 EST 2014
STATUS

proposed

approved

#6 by Michel Marcus at Mon Dec 29 02:26:40 EST 2014
STATUS

editing

proposed

#5 by Michel Marcus at Mon Dec 29 02:26:34 EST 2014
FORMULA

a(3n) = a(4n) = a(n). a(6n+5) = 0.

(PARI) {a(n)= if(n<1, 0, -sumdiv(n, d, (-1)^(n/d)* kronecker(-3, d)))}

(PARI) {a(n)= if(n<1, 0, sumdiv(n, d, (2+(-1)^d)* kronecker(-3, d)))}

PROG

(PARI) {a(n)= if(n<1, 0, -sumdiv(n, d, (-1)^(n/d)* kronecker(-3, d)))}

(PARI) {a(n)= if(n<1, 0, sumdiv(n, d, (2+(-1)^d)* kronecker(-3, d)))}

STATUS

approved

editing

#4 by Charles R Greathouse IV at Wed Apr 30 01:37:37 EDT 2014
AUTHOR

_Michael Somos, _, Sep 15 2006

Discussion
Wed Apr 30
01:37
OEIS Server: https://oeis.org/edit/global/2183
#3 by N. J. A. Sloane at Tue Jun 01 03:00:00 EDT 2010
COMMENTS

Ramanujan theta functions: f(q) := Prod_{k>=1} (1-(-q)^k) (see A121373), phi(q) := theta_3(q) := Sum_{k=-oo..oo} q^(k^2) (A000122), psi(q) := Sum_{k=0..oo} q^(k*(k+1)/2) (A10054), chi(q) := Prod_{k>=0} (1+q^(2k+1)) (A000700).

LINKS

M. Somos, <a href="http://cis.csuohio.edu/~somos/multiq.pdf">Introduction to Ramanujan theta functions</a>

Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RamanujanThetaFunctions.html">Ramanujan Theta Functions</a>

KEYWORD

sign,mult,new

#2 by N. J. A. Sloane at Sat Nov 10 03:00:00 EST 2007
REFERENCES

N. J. Fine, Basic Hypergeometric Series and Applications, Amer. Math. Soc., 1988; p. 84, Eq. (32.64).

FORMULA

G.f.: Sum_{k>0} x^(3*k-2)/(1+x^(3*k-2)) -x^(3*k-1)/(1+x^(3*k-1)).

(PARI) {a(n)= if(n<1, 0, -sumdiv(n, d, (-1)^(n/d)* kronecker(-3, d)))}

(PARI) {a(n)= if(n<1, 0, sumdiv(n, d, (2+(-1)^d)* kronecker(-3, d)))}

KEYWORD

sign,mult,new