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-10 of 10 results.

A003105 Schur's 1926 partition theorem: number of partitions of n into parts 6n+1 or 6n-1.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 2, 3, 3, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 23, 26, 30, 34, 38, 42, 47, 53, 60, 67, 74, 82, 91, 102, 114, 126, 139, 153, 169, 187, 207, 228, 250, 274, 301, 331, 364, 399, 436, 476, 520, 569, 622, 679, 739, 804, 875, 953, 1038, 1128, 1224, 1327
Offset: 0

Views

Author

Keywords

Comments

There are many (at least 8) equivalent definitions of this sequence (besides the comments below, see also Schur, Alladi, Andrews). - N. J. A. Sloane, Jun 17 2011
Coefficients of replicable function number 72e. - N. J. A. Sloane, Jun 10 2015
Also number of partitions of n into odd parts in which no part appears more than twice, cf. A070048 and A096938. - Vladeta Jovovic, Jan 18 2005
Also number of partitions of n into distinct parts congruent to 1 or 2 modulo 3. (Follows from second g.f.) - N. Sato, Jul 20 2005
Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
Convolution of A262928 and A261612. - Vaclav Kotesovec, Jan 13 2017
Convolution of A109702 and A109701. - Vaclav Kotesovec, Jan 21 2017

Examples

			G.f: A(x) = 1 + x + x^2 + x^3 + x^4 + 2*x^5 + 2*x^6 + 3*x^7 + 3*x^8 + 3*x^9 + 4*x^10 + ...
T72e = 1/q + q^11 + q^23 + q^35 + q^47 + 2*q^59 + 2*q^71 + 3*q^83 + ...
The logarithm of the g.f. begins:
log(A(x)) = x + x^2/2 + x^3/3 + x^4/4 + 6*x^5/5 + x^6/6 + 8*x^7/7 + x^8/8 + x^9/9 + 6*x^10/10 + 12*x^11/11 + x^12/12 + ... + A186099(n)*x^n/n + ... . - _Paul D. Hanna_, Feb 17 2013
		

References

  • K. Alladi, Refinements of Rogers-Ramanujan type identities. In Special Functions, q-Series and Related Topics (Toronto, ON, 1995), 1-35, Fields Inst. Commun., 14, Amer. Math. Soc., Providence, RI, 1997.
  • G. E. Andrews, Schur's theorem, partitions with odd parts and the Al-Salam-Carlitz polynomials. In q-Series From a Contemporary Perspective (South Hadley, MA, 1998), 45-56, Contemp. Math., 254, Amer. Math. Soc., Providence, RI, 2000.
  • H. P. Robinson, Letter to N. J. A. Sloane, Jan 04 1974.
  • I. Schur, Zur Additiven Zahlentheorie, Ges. Abh., Vol. 2, Springer, pp. 43-50.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Haskell
    a003105 n = p 1 n where
       p k m | m == 0 = 1 | m < k = 0 | otherwise = q k (m-k) + p (k+2) m
       q k m | m == 0 = 1 | m < k = 0 | otherwise = p (k+2) (m-k) + p (k+2) m
    -- Reinhard Zumkeller, Nov 12 2011
  • Maple
    with(combinat);
    A:=proc(n) local i, j, t3, t2, t1;
        t2:=0;
        t1:=firstpart(n);
        for j from 1 to numbpart(n)+2 do
            t3:=1;
            for i from 1 to nops(t1) do
                if (t1[i] mod 6) <> 1 and (t1[i] mod 6) <> 5 then t3:=0; fi;
            od;
            if t3=1 then t2:=t2+1; fi;
            if nops(t1) = 1 then RETURN(t2); fi;
            t1:=nextpart(t1);
        od;
    end;
    # brute-force Maple program from N. J. A. Sloane, Jun 17 2011
  • Mathematica
    max = 63; f[x_] := 1/Product[1 - x^k + x^(2k), {k, 0, max}]; CoefficientList[ Series[ f[x], {x, 0, max}], x] (* Jean-François Alcover, Dec 01 2011, after Vladeta Jovovic *)
    a[ n_] := SeriesCoefficient[ QPochhammer[ -x, x] / QPochhammer[ -x^3, x^3], {x, 0, n}]; (* Michael Somos, Jul 05 2014 *)
    nmax = 100; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 3] != 0, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}];], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 13 2017 *)
    nmax = 63; kmax = nmax/6;
    s = Flatten[{Range[0, kmax]*6 + 1}~Join~{Range[kmax]*6 - 1}];
    Table[Count[IntegerPartitions@n, x_ /; SubsetQ[s, x]], {n, 0, nmax}] (* Robert Price, Jul 31 2020 *)
  • PARI
    {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A) * eta(x^3 + A) / (eta(x + A) * eta(x^6 + A)), n))}; /* Michael Somos, Jan 09 2005 */
    
  • PARI
    {S(n,x)=sumdiv(n,d,d*(1-x^d)^(n/d))}
    {a(n)=polcoeff(exp(sum(k=1,n,S(k,x)*x^k/k)+x*O(x^n)),n)}
    for(n=0,60,print1(a(n),", "))
    /* Paul D. Hanna, Feb 17 2013 */
    

Formula

G.f.: 1/Product_{k>=0} (1-x^(6*k+1))*(1-x^(6*k+5)) = Product_{k>=0} (1+x^(3*k+1))*(1+x^(3*k+2)) = 1/Product_{k>=0} (1-x^k+x^(2*k)). - Vladeta Jovovic, Jun 08 2003
Expansion of chi(-x^3) / chi(-x) in powers of x where chi() is a Ramanujan theta function. - Michael Somos, Mar 04 2012
Expansion of f(x, x^2) / f(-x^3) = f(-x^6) / f(-x, -x^5) in powers of x where f() is Ramanujan theta function. - Michael Somos, Jul 05 2014
Expansion of q^(1/12) * eta(q^2) * eta(q^3) / (eta(q) * eta(q^6)) in powers of q. - Michael Somos, Jan 09 2005
Euler transform of period 6 sequence [1, 0, 0, 0, 1, 0, ...]. - Michael Somos, Jan 09 2005
Given g.f. A(x), then B(q) = (A(q^12) / q)^4 satisfies 0 = f(B(q), B(q^2)) where f(u, v) = u*v^4 + (1 - u^3) * v^3 + 6*u^2*v^2 + (u^4 - u)*v + u^3. - Michael Somos, Jan 09 2005
The logarithmic derivative equals A186099. - Paul D. Hanna, Feb 17 2013
G.f.: exp( Sum_{n>=1} A186099(n) * x^n/n ) where A186099(n) = sum of divisors of n congruent to 1 or 5 mod 6. - Paul D. Hanna, Feb 17 2013
G.f.: exp( Sum_{n>=1} S(n,x) * x^n/n ) where S(n,x) = Sum_{d|n} d*(1-x^d)^(n/d). - Paul D. Hanna, Feb 17 2013
a(n) ~ Pi*sqrt(2) / sqrt(3*(12*n-1)) * BesselI(1, Pi*sqrt(12*n-1) / (3*sqrt(6))) ~ exp(Pi*sqrt(2*n)/3) / (2^(5/4) * sqrt(3) * n^(3/4)) * (1 - (9/(8*Pi) + Pi/36)/sqrt(2*n) + (5 - 135/(4*Pi^2) + Pi^2/81)/(64*n)). - Vaclav Kotesovec, Aug 23 2015, extended Jan 09 2017
a(n) = (1/n)*Sum_{k=1..n} A186099(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Mar 21 2017

Extensions

More terms from Vladeta Jovovic, Jun 08 2003

A035451 Number of partitions of n into parts congruent to 1 mod 4.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 4, 4, 4, 5, 6, 7, 7, 8, 10, 11, 12, 13, 15, 17, 18, 20, 23, 26, 28, 30, 34, 38, 41, 44, 49, 55, 60, 64, 70, 78, 85, 91, 99, 109, 119, 128, 138, 151, 164, 176, 190, 207, 225, 241, 259, 281, 304, 326, 349, 377, 408, 437, 467, 503, 542, 581
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. similar sequences of number of partitions of n into parts congruent to 1 mod m: A000009 (m=2), A035382 (m=3), this sequence (m=4), A109697 (m=5), A109701 (m=6), A109703 (m=7), A277090 (m=8).

Programs

  • Maple
     g := add(x^(n*(4*n-3))/mul((1-x^(4*k))*(1-x^(4*k-3)), k = 1..n), n = 0..5): gser := series(g,x,101): seq(coeff(gser,x,n), n = 0..100); # Peter Bala, Feb 02 2021
  • Mathematica
    nmax=100; CoefficientList[Series[Product[1/(1-x^(4*k+1)),{k, 0, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Feb 26 2015 *)
    nmax = 50; kmax = nmax/4; s = Range[0, kmax]*4 + 1;
    Table[Count[IntegerPartitions@n, x_ /; SubsetQ[s, x]], {n, 0, nmax}] (* Robert Price, Aug 03 2020 *)

Formula

G.f.: 1/Product_{k>=0} (1 - x^(4*k+1)). - Vladeta Jovovic, Nov 22 2002
G.f.: Sum_{n>=0} (x^n / Product_{k=1..n} (1 - x^(4*k))). - Joerg Arndt, Apr 07 2011
G.f.: 1 + Sum_{n>=0} (x^(4*n+1) / Product_{k>=n} (1 - x^(4*k+1))) = 1 + Sum_{n>=0} (x^(4*n+1) / Product_{k=0..n} (1 - x^(4*k+1))). - Joerg Arndt, Apr 08 2011
a(n) ~ Gamma(1/4) * exp(Pi*sqrt(n/6)) / (2^(19/8) * 3^(1/8) * n^(5/8) * Pi^(3/4)) * (1 + (Pi/(96*sqrt(6)) - 5*sqrt(3/2)/(16*Pi)) / sqrt(n)). - Vaclav Kotesovec, Feb 26 2015, extended Jan 24 2017
a(n) = (1/n)*Sum_{k=1..n} A050449(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Mar 20 2017
G.f.: Sum_{n>=0} x^(n*(4*n-3))/Product_{k = 1..n} ( (1-x^(4*k))*(1-x^(4*k-3)) ). (Set z = x and q = x^4 in Mc Laughlin et al., Section 1.3, Entry 7.) - Peter Bala, Feb 02 2021

Extensions

Offset changed by N. J. A. Sloane, Apr 11 2010

A109697 Number of partitions of n into parts each equal to 1 mod 5.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 4, 4, 4, 4, 5, 6, 7, 7, 7, 8, 10, 11, 12, 12, 13, 15, 17, 18, 19, 20, 23, 26, 28, 29, 31, 34, 38, 41, 43, 45, 50, 55, 60, 63, 66, 71, 79, 85, 90, 94, 101, 110, 120, 127, 133, 141, 153, 165, 176, 184, 195, 210, 227, 241, 254, 267, 286, 307, 327
Offset: 0

Views

Author

Erich Friedman, Aug 07 2005

Keywords

Examples

			a(11)=3 since 11 = 11 = 6+1+1+1+1+1 = 1+1+1+1+1+1+1+1+1+1+1
		

Crossrefs

Cf. similar sequences of number of partitions of n into parts congruent to 1 mod m: A000009 (m=2), A035382 (m=3), A035451 (m=4), this sequence (m=5), A109701 (m=6), A109703 (m=7), A277090 (m=8).

Programs

Formula

G.f.: 1/product(1-x^(1+5j), j=0..infinity). - Emeric Deutsch, Mar 30 2006
a(n) ~ Gamma(1/5) * exp(Pi*sqrt(2*n/15)) / (2^(8/5) * 3^(1/10) * 5^(2/5) * Pi^(4/5) * n^(3/5)) * (1 - (3*sqrt(3/10)/(5*Pi) + Pi/(120*sqrt(30))) / sqrt(n)). - Vaclav Kotesovec, Feb 27 2015, extended Jan 24 2017
a(n) = (1/n)*Sum_{k=1..n} A284097(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Mar 20 2017
G.f.: Sum_{k>=0} x^k / Product_{j=1..k} (1 - x^(5*j)). - Ilya Gutkovskiy, Jul 17 2019

Extensions

More terms from Emeric Deutsch, Mar 30 2006

A284098 a(n) = Sum_{d|n, d == 1 (mod 6)} d.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 14, 8, 1, 1, 1, 1, 20, 1, 8, 1, 1, 1, 26, 14, 1, 8, 1, 1, 32, 1, 1, 1, 8, 1, 38, 20, 14, 1, 1, 8, 44, 1, 1, 1, 1, 1, 57, 26, 1, 14, 1, 1, 56, 8, 20, 1, 1, 1, 62, 32, 8, 1, 14, 1, 68, 1, 1, 8, 1, 1, 74, 38, 26, 20, 8, 14, 80, 1, 1
Offset: 1

Views

Author

Seiichi Manyama, Mar 20 2017

Keywords

Crossrefs

Cf. Sum_{d|n, d==1 (mod k)} d: A000593 (k=2), A078181 (k=3), A050449 (k=4), A284097 (k=5), this sequence (k=6), A284099 (k=7), A284100 (k=8).

Programs

  • Mathematica
    Table[Sum[If[Mod[d, 6] == 1, d, 0], {d, Divisors[n]}], {n, 80}] (* Indranil Ghosh, Mar 21 2017 *)
  • PARI
    for(n=1, 82, print1(sumdiv(n, d, if(Mod(d, 6)==1, d, 0)), ", ")) \\ Indranil Ghosh, Mar 21 2017
    
  • Python
    from sympy import divisors
    def a(n): return sum([d for d in divisors(n) if d%6==1]) # Indranil Ghosh, Mar 21 2017

Formula

G.f.: Sum_{k>=0} (6*k + 1)*x^(6*k+1)/(1 - x^(6*k+1)). - Ilya Gutkovskiy, Mar 21 2017
G.f.: Sum_{n >= 1} x^n*(1 + 5*x^(6*n))/(1 - x^(6*n))^2. - Peter Bala, Dec 19 2021
Sum_{k=1..n} a(k) = c * n^2 + O(n*log(n)), where c = Pi^2/72 = 0.137077... (A086729). - Amiram Eldar, Nov 26 2023

A280456 Expansion of Product_{k>=0} (1 + x^(6*k+1)).

Original entry on oeis.org

1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 3, 2, 0, 0, 0, 1, 3, 3, 1, 0, 0, 1, 4, 4, 1, 0, 0, 1, 4, 5, 2, 0, 0, 1, 5, 7, 3, 0, 0, 1, 5, 8, 5, 1, 0, 1, 6, 10, 6, 1, 0, 1, 6, 12, 9, 2, 0, 1, 7, 14, 11, 3, 0, 1, 7, 16, 15, 5, 0, 1, 8, 19, 18, 7, 1, 1, 8, 21, 23, 10, 1, 1, 9, 24
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 03 2017

Keywords

Comments

Number of partitions of n into distinct parts congruent to 1 mod 6.
Convolution of A281244 and A280456 is A098884. - Vaclav Kotesovec, Jan 18 2017

Examples

			a(32) = 3 because we have [31, 1], [25, 7] and [19, 13].
		

Crossrefs

Programs

  • Mathematica
    nmax = 105; CoefficientList[Series[Product[(1 + x^(6 k + 1)), {k, 0, nmax}], {x, 0, nmax}], x]
    nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 6] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)

Formula

G.f.: Product_{k>=0} (1 + x^(6*k+1)).
a(n) ~ exp(Pi*sqrt(n)/(3*sqrt(2)))/(2*2^(5/12)*sqrt(3)*n^(3/4)) * (1 + (Pi/(144*sqrt(2)) - 9/(4*sqrt(2)*Pi)) / sqrt(n)). - Ilya Gutkovskiy, Jan 03 2017, extended by Vaclav Kotesovec, Jan 18 2017

A109703 Number of partitions of n into parts each equal to 1 mod 7.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 5, 6, 7, 7, 7, 7, 7, 8, 10, 11, 12, 12, 12, 12, 13, 15, 17, 18, 19, 19, 19, 20, 23, 26, 28, 29, 30, 30, 31, 34, 38, 41, 43, 44, 45, 46, 50, 55, 60, 63, 65, 66, 68, 72, 79, 85, 90, 93, 95, 97, 103, 111, 120, 127, 132, 135
Offset: 0

Views

Author

Erich Friedman, Aug 07 2005

Keywords

Examples

			a(15)=3 because we have 15=8+1+1+1+1+1+1+1=1+1+1+1+1+1+1+1+1+1+1+1+1+1+1.
		

Crossrefs

Cf. A284099.
Cf. similar sequences of number of partitions of n into parts congruent to 1 mod m: A000009 (m=2), A035382 (m=3), A035451 (m=4), A109697 (m=5), A109701 (m=6), this sequence (m=7), A277090 (m=8).

Programs

  • Maple
    g:=1/product(1-x^(1+7*j),j=0..20): gser:=series(g,x=0,80): seq(coeff(gser,x,n),n=0..77); # Emeric Deutsch, Apr 14 2006
  • Mathematica
    nmax=100; CoefficientList[Series[Product[1/(1-x^(7*k+1)),{k, 0, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Feb 27 2015 *)

Formula

G.f.: 1/product(1-x^(1+7j), j=0..infinity). - Emeric Deutsch, Apr 14 2006
a(n) ~ Gamma(1/7) * exp(Pi*sqrt(2*n/21)) / (2^(11/7) * 3^(1/14) * 7^(3/7) * Pi^(6/7) * n^(4/7)) * (1 - (2*sqrt(6/7)/(7*Pi) + 13*Pi/(168*sqrt(42))) / sqrt(n)). - Vaclav Kotesovec, Feb 27 2015, extended Jan 24 2017
a(n) = (1/n)*Sum_{k=1..n} A284099(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Mar 20 2017
G.f.: Sum_{k>=0} x^k / Product_{j=1..k} (1 - x^(7*j)). - Ilya Gutkovskiy, Jul 17 2019

Extensions

Changed offset to 0 and added a(0)=1 by Vaclav Kotesovec, Feb 27 2015

A277090 Expansion of Product_{k>=0} 1/(1 - x^(8*k+1)).

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 5, 6, 7, 7, 7, 7, 7, 7, 8, 10, 11, 12, 12, 12, 12, 12, 13, 15, 17, 18, 19, 19, 19, 19, 20, 23, 26, 28, 29, 30, 30, 30, 31, 34, 38, 41, 43, 44, 45, 45, 46, 50, 55, 60, 63, 65, 66, 67, 68, 72, 79, 85, 90, 93, 95, 96, 98, 103, 111, 120, 127, 132, 135, 137, 139, 145
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 29 2016

Keywords

Comments

Number of partitions of n into parts congruent to 1 mod 8.
More generally, the ordinary generating function for the number of partitions of n into parts congruent to 1 mod m (for m>0) is Product_{k>=0} 1/(1 - x^(m*k+1)).

Examples

			a(10) = 2, because we have [9, 1] and [1, 1, 1, 1, 1, 1, 1, 1, 1, 1].
		

Crossrefs

Cf. similar sequences of number of partitions of n into parts congruent to 1 mod m: A000009 (m=2), A035382 (m=3), A035451 (m=4), A109697 (m=5), A109701 (m=6), A109703 (m=7).

Programs

  • Mathematica
    CoefficientList[Series[QPochhammer[x, x^8]^(-1), {x, 0, 90}], x]

Formula

G.f.: Product_{k>=0} 1/(1 - x^(8*k+1)).
a(n) ~ exp((Pi*sqrt(n))/(2*sqrt(3)))*Gamma(1/8)/(4*3^(1/16)*(2*Pi)^(7/8)*n^(9/16)).
a(n) = (1/n)*Sum_{k=1..n} A284100(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Mar 20 2017

A339088 Number of compositions (ordered partitions) of n into distinct parts congruent to 1 mod 6.

Original entry on oeis.org

1, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 4, 6, 0, 0, 0, 1, 4, 6, 0, 0, 0, 1, 6, 12, 0, 0, 0, 1, 6, 18, 24, 0, 0, 1, 8, 24, 24, 0, 0, 1, 8, 30, 48, 0, 0, 1, 10, 42, 72, 0, 0, 1, 10, 48, 120, 120, 0, 1, 12, 60, 144, 120, 0, 1, 12, 72, 216, 240, 0, 1, 14, 84, 264, 360
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 23 2020

Keywords

Examples

			a(21) = 6 because we have [13, 7, 1], [13, 1, 7], [7, 13, 1], [7, 1, 13], [1, 13, 7] and [1, 7, 13].
		

Crossrefs

Programs

  • Mathematica
    nmax = 83; CoefficientList[Series[Sum[k! x^(k (3 k - 2))/Product[1 - x^(6 j), {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]

Formula

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

A277349 Expansion of Product_{k>=1} 1/(1 - x^(6*k+1)).

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 2, 1, 1, 0, 0, 1, 2, 2, 1, 1, 0, 1, 3, 3, 2, 1, 1, 1, 3, 4, 3, 2, 1, 2, 4, 5, 5, 3, 2, 2, 5, 7, 6, 5, 3, 3, 6, 9, 9, 7, 5, 4, 7, 11, 12, 10, 7, 6, 9, 14, 16, 14, 11, 8, 11, 17, 20, 19, 15, 12, 14, 21, 26, 25, 21, 17, 18, 26, 32, 33, 28, 23, 24, 32, 41
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 10 2016

Keywords

Comments

Number of partitions of n into parts larger than 1 and congruent to 1 mod 6.

Examples

			a(26) = 2, because we have [19, 7] and [13, 13].
		

Crossrefs

Cf. A016921, A087897, A109701 (partial sums), A117957, A277210, A277264.

Programs

  • Maple
    N:= 100:
    G:= 1/mul(1-x^m,m=7..N,6):
    S:= series(G,x,N+1):
    seq(coeff(S,x,j),j=0..N); # Robert Israel, Jan 23 2019
  • Mathematica
    CoefficientList[Series[(1 - x)/QPochhammer[x, x^6], {x, 0, 100}], x]

Formula

G.f.: Product_{k>=1} 1/(1 - x^(6*k+1)).
a(n) ~ Pi^(1/6) * Gamma(1/6) * exp(sqrt(n)*Pi/3) / (24*sqrt(3)*n^(13/12)). - Vaclav Kotesovec, Oct 10 2016

A304883 Expansion of Product_{k>=1} 1/(1-x^(3*k-1)) * Product_{k>=1} 1/(1-x^(6*k-5)).

Original entry on oeis.org

1, 1, 2, 2, 3, 4, 5, 7, 9, 11, 14, 17, 21, 26, 32, 39, 47, 56, 67, 80, 95, 113, 133, 156, 183, 214, 250, 291, 338, 391, 452, 521, 600, 690, 791, 906, 1035, 1181, 1346, 1532, 1741, 1975, 2238, 2532, 2862, 3231, 3643, 4103, 4615, 5186, 5822, 6529, 7315, 8187, 9154
Offset: 0

Views

Author

Seiichi Manyama, May 20 2018

Keywords

Crossrefs

Programs

  • Maple
    seq(coeff(series(mul(1/(1-x^(3*k-1)),k=1..n)*mul(1/(1-x^(6*k-5)),k=1..n), x,70),x,n),n=0..60); # Muniru A Asiru, May 21 2018
  • Mathematica
    CoefficientList[ Series[ Product[1/(1 - x^(3k -1)), {k, 18}]*Product[1/(1 - x^(6k -5)), {k, 9}], {x, 0, 54}], x] (* Robert G. Wilson v, May 20 2018 *)

Formula

G.f.: Sum_{j>=0} x^(j*(3*j+1)/2)*(Product_{k=1..j} (1-x^(6*k-2)))/(Product_{k=1..3*j+1} (1-x^k)).
a(n) ~ exp(Pi*sqrt(n/3)) * Gamma(1/3) / (4 * 3^(1/3) * Pi^(2/3) * n^(2/3)). - Vaclav Kotesovec, May 21 2018
Showing 1-10 of 10 results.