cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A098098 a(n) = sigma(6*n+5)/6.

Original entry on oeis.org

1, 2, 3, 4, 5, 8, 7, 8, 9, 10, 14, 12, 16, 14, 15, 20, 17, 18, 19, 24, 26, 22, 23, 28, 25, 32, 32, 28, 29, 30, 38, 32, 33, 40, 40, 44, 42, 38, 39, 40, 57, 42, 43, 44, 45, 62, 47, 56, 49, 56, 62, 52, 53, 60, 64, 68, 64, 58, 59, 60, 74, 72, 70, 64, 65, 80, 67, 76, 80, 70, 93, 72
Offset: 0

Views

Author

Vladeta Jovovic, Sep 14 2004

Keywords

Comments

Euler transform of period 6 sequence [2, 0, 0, 0, 2, -4, ...].
Expansion of q^(-5/6) * (eta(q)^-1 * eta(q^2) * eta(q^3) * eta(q^6))^2 in powers of q. - Michael Somos, Sep 16 2004
2*a(n) is the number of bipartitions of 2*n+1 that are 3-cores. See Baruah and Nath. - Michel Marcus, Apr 13 2020

Examples

			G.f. =1 + 2*x + 3*x^2 + 4*x^3 + 5*x^4 + 8*x^5 + 7*x^6 + 8*x^7 + 9*x^8 + 10*x^9 + ...
G.f. = q^5 + 2*q^11 + 3*q^17 + 4*q^23 + 5*q^29 + 8*q^35 + 7*q^41 + 8*q^47 + 9*q^53 + ...
		

Crossrefs

Programs

  • Magma
    Basis( ModularForms( Gamma0( 36), 2), 432)[6]; /* Michael Somos, Jul 09 2018 */
  • Mathematica
    Table[DivisorSigma[1, 6 n + 5]/6, {n, 0, 71}] (* Ivan Neretin, Apr 30 2016 *)
  • PARI
    a(n) = sigma(6*n + 5)/6
    
  • PARI
    {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( (eta(x^2 + A) * eta(x^3 + A) * eta(x^6 + A) / eta(x + A))^2, n))} /* Michael Somos, Sep 16 2004 */
    

Formula

G.f.: (Product_{k>0} (1 + x^k) * (1 - x^(3*k)) * (1 - x^(6*k)))^2. - Michael Somos, Sep 16 2004
From Michael Somos, Jul 09 2018: (Start)
G.f. is a period 1 Fourier series which satisfies f(-1 / (36 t)) = (t/i)^2 g(t) where q = exp(2 Pi i t) and g() is the g.f. for A252650. -
Convolution square of A121444.
A232343(2*n) = (-1)^n * A258831(n) = A000203(6*n + 4) = a(n). A033686(2*n) = -A134079(2*n + 1) = 2 * a(n). A121443(6*n + 5) = A133739(6*n + 5) = A232356(6*n + 5) = A134077(3*n + 2) = 6 * a(n). A125514(6*n + 5) = 24 * a(n). A134078(6*n + 5) = -36 * a(n). A186100(6*n + 5) = -72 * a(n). (End)
From Amiram Eldar, Dec 16 2022: (Start)
a(n) = A000203(A016969(n))/6.
Sum_{k=1..n} a(k) = (Pi^2/18) * n^2 + O(n*log(n)). (End)

A134079 Expansion of q^(-2/3) * c(-q)^2 / 9 in powers of q where c(q) is a cubic AGM theta function.

Original entry on oeis.org

1, -2, 5, -4, 8, -6, 14, -8, 14, -10, 21, -16, 20, -14, 28, -16, 31, -18, 40, -20, 32, -28, 42, -24, 38, -32, 62, -28, 44, -30, 56, -40, 57, -34, 70, -36, 72, -38, 70, -48, 62, -52, 85, -44, 68, -46, 112, -56, 74, -50, 100, -64, 80, -64, 98, -56, 108, -58, 124
Offset: 0

Views

Author

Michael Somos, Oct 06 2007

Keywords

Comments

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).

Examples

			G.f. = 1 - 2*x + 5*x^2 - 4*x^3 + 8*x^4 - 6*x^5 + 14*x^6 - 8*x^7 + 14*x^8 - ...
G.f. = q^2 - 2*q^5 + 5*q^8 - 4*q^11 + 8*q^14 - 6*q^17 + 14*q^20 - 8*q^23 + ...
		

Crossrefs

Programs

  • Mathematica
    a[ n_] := SeriesCoefficient[ (QPochhammer[ -x^3]^3 / QPochhammer[ -x])^2, {x, 0, n}]; (* Michael Somos, Feb 19 2015 *)
    a[ n_] := If[ n < 0, 0, (-1)^n DivisorSigma[ 1, 3 n + 2] / 3]; (* Michael Somos, Feb 19 2015 *)
  • PARI
    {a(n) = my(A); if( n<0, 0, A = x*O(x^n); polcoeff( ( eta(x + A) * eta(x^4 + A) * eta(x^6 + A)^9 / ( eta(x^2 + A) * eta(x^3 + A) * eta(x^12 + A) )^3 )^2, n))};
    
  • PARI
    {a(n) = if( n<0, 0, (-1)^n * sigma(3*n + 2) / 3)}; /* Michael Somos, Feb 19 2015 */

Formula

Expansion of ( f(x^3)^3 / f(x) )^2 in powers of x where f() is a Ramanujan theta function.
Expansion of q^(-2/3) * eta(q)^2 * eta(q^4)^2 * eta(q^6)^18 / (eta(q^2) * eta(q^3)* eta(q^12))^6 in powers of q.
Euler transform of period 12 sequence [ -2, 4, 4, 2, -2, -8, -2, 2, 4, 4, -2, -4, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (36 t)) = (4/3) (t/i)^2 g(t) where q = exp(2 Pi i t) and g() is the g.f. for A263773.
a(n) = (-1)^n * A033686(n). 18 * a(n) = A134078(3*n + 2).
From Michael Somos, Feb 19 2015: (Start)
a(2*n + 1) = -2 * A098098(n).
Convolution square of A227696. (End)
Sum_{k=1..n} a(k) ~ (Pi^2/54) * n^2. - Amiram Eldar, Nov 23 2023

A133739 Expansion of q * (psi(q^6) / psi(q^3))^3 * phi(q)^5 / psi(q) in powers of q where phi(), psi() are Ramanujan theta functions.

Original entry on oeis.org

1, 9, 31, 45, 6, -45, 8, 117, 121, 54, 12, -9, 14, 72, 186, 261, 18, -207, 20, 270, 248, 108, 24, 63, 31, 126, 391, 360, 30, -270, 32, 549, 372, 162, 48, -171, 38, 180, 434, 702, 42, -360, 44, 540, 726, 216, 48, 207, 57, 279, 558, 630, 54, -693, 72, 936, 620
Offset: 1

Views

Author

Michael Somos, Oct 06 2007

Keywords

Comments

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

Examples

			G.f. = q + 9*q^2 + 31*q^3 + 45*q^4 + 6*q^5 - 45*q^6 + 8*q^7 + 117*q^8 + ...
		

Crossrefs

Programs

  • Magma
    A := Basis( ModularForms( Gamma0(12), 2), 58); A[2] + 9*A[3] + 31*A[4] + 45*A[5]; /* Michael Somos, Oct 30 2015 */
  • Mathematica
    a[ n_] := SeriesCoefficient[ 2 (EllipticTheta[ 2, 0, x^3] / EllipticTheta[ 2, 0, x^(3/2)])^3 (EllipticTheta[ 3, 0, x]^5 / EllipticTheta[ 2, 0, x^(1/2)]), {x, 0, n}]; (* Michael Somos, Oct 30 2015 *)
    QP=QPochhammer; CoefficientList[Series[QP[q^2]^23*QP[q^3]^3*QP[q^12]^6/( QP[q]^9*QP[q^4]^10*QP[q^6]^9), {q,0,50}],q] (* G. C. Greubel, Nov 16 2018 *)
  • PARI
    {a(n) = my(A); if ( n<1, 0, n--; A = x * O(x^n); polcoeff( eta(x^2 + A)^23 * eta(x^3 + A)^3 * eta(x^12 + A)^6 / (eta(x + A)^9 * eta(x^4 + A)^10 * eta(x^6 + A)^9), n))};
    

Formula

Expansion of eta(q^2)^23 * eta(q^3)^3 * eta(q^12)^6 / (eta(q)^9 * eta(q^4)^10 * eta(q^6)^9) in powers of q.
Euler transform of period 12 sequence [ 9, -14, 6, -4, 9, -8, 9, -4, 6, -14, 9, -4, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (12 t)) = 18 (t/i)^2 g(t) where q = exp(2 Pi i t) and g() is the g.f. for A134078.
G.f.: f(x) + 6 * f(x^2) + 27 * f(x^3) + 20 * f(x^4) - 162 * f(x^6) + 108 * f(x^12) where f() is the g.f. of A000203.
a(4*n + 2) = 9 * A134077(n). a(6*n + 5) = 6 * A098098(n).
Showing 1-3 of 3 results.