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 16 results. Next

A282060 Coefficients in q-expansion of E_4*(E_2*E_4 - E_6)/720, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively.

Original entry on oeis.org

0, 1, 258, 6564, 66052, 390630, 1693512, 5764808, 16909320, 43066413, 100782540, 214358892, 433565328, 815730734, 1487320464, 2564095320, 4328785936, 6975757458, 11111134554, 16983563060, 25801892760, 37840199712, 55304594136, 78310985304, 110992776480
Offset: 0

Views

Author

Seiichi Manyama, Feb 05 2017

Keywords

Comments

Multiplicative because A013955 is. - Andrew Howroyd, Jul 25 2018

Examples

			a(6) = 1^8*6^1 + 2^8*3^1 + 3^8*2^1 + 6^8*1^1 = 1693512.
		

Crossrefs

Cf. A064987 (phi_{2, 1}), A281372 (phi_{4, 1}), A282050 (phi_{6, 1}), this sequence (phi_{8, 1}).
Cf. A006352 (E_2), A004009 (E_4), A013973 (E_6), A282101 (E_2*E_4^2), A013974 (E_4*E_6 = E_10).

Programs

  • Mathematica
    terms = 25;
    E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}];
    E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}];
    E6[x_] = 1 - 504*Sum[k^5*x^k/(1 - x^k), {k, 1, terms}];
    E4[x]*(E2[x]*E4[x] - E6[x])/720 + O[x]^terms // CoefficientList[#, x]& (* Jean-François Alcover, Feb 26 2018 *)
    Table[n * DivisorSigma[7, n], {n, 0, 24}] (* Amiram Eldar, Sep 06 2023 *)
    nmax = 40; CoefficientList[Series[x*Sum[k^8*x^(k-1)/(1 - x^k)^2, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 01 2025 *)
  • PARI
    a(n) = if(n < 1, 0, n*sigma(n, 7)) \\ Andrew Howroyd, Jul 25 2018

Formula

G.f.: phi_{8, 1}(x) where phi_{r, s}(x) = Sum_{n, m>0} m^r * n^s * x^{m*n}.
a(n) = (A282101(n) - A013974(n))/720. - Seiichi Manyama, Feb 10 2017
If p is a prime, a(p) = p^8 + p = A196288(p). - Seiichi Manyama, Feb 10 2017
a(n) = n*A013955(n) for n > 0. - Seiichi Manyama, Feb 18 2017
Sum_{k=1..n} a(k) ~ zeta(8) * n^9 / 9. - Amiram Eldar, Sep 06 2023
From Amiram Eldar, Oct 30 2023: (Start)
Multiplicative with a(p^e) = p^e * (p^(7*e+7)-1)/(p^7-1).
Dirichlet g.f.: zeta(s-1)*zeta(s-8). (End)
G.f. Sum_{k>=1} k^8*x^(k-1)/(1 - x^k)^2. - Vaclav Kotesovec, Aug 01 2025

A282050 Coefficients in q-expansion of (E_4^2 - E_2*E_6)/1008, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively.

Original entry on oeis.org

0, 1, 66, 732, 4228, 15630, 48312, 117656, 270600, 533637, 1031580, 1771572, 3094896, 4826822, 7765296, 11441160, 17318416, 24137586, 35220042, 47045900, 66083640, 86124192, 116923752, 148035912, 198079200, 244218775, 318570252, 389021400, 497449568, 594823350
Offset: 0

Views

Author

Seiichi Manyama, Feb 05 2017

Keywords

Comments

Multiplicative because A001160 is. - Andrew Howroyd, Jul 23 2018

Examples

			a(6) = 1^6*6^1 + 2^6*3^1 + 3^6*2^1 + 6^6*1^1 = 48312.
		

Crossrefs

Cf. A064987 (phi_{2, 1}), A281372 (phi_{4, 1}), this sequence (phi_{6, 1}), A282060 (phi_{8, 1}).
Cf. A006352 (E_2), A004009 (E_4), A013973 (E_6), A145095 (-q*E'_6), A008410 (E_4^2 = E_8), A282096 (E_2*E_6).

Programs

  • Mathematica
    terms = 30;
    E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}];
    E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}];
    E6[x_] = 1 - 504*Sum[k^5*x^k/(1 - x^k), {k, 1, terms}];
    (E4[x]^2 - E2[x]*E6[x])/1008 + O[x]^terms // CoefficientList[#, x]& (* Jean-François Alcover, Feb 26 2018 *)
    Table[n * DivisorSigma[5, n], {n, 0, 30}] (* Amiram Eldar, Sep 06 2023 *)
    nmax = 40; CoefficientList[Series[x*Sum[k^6*x^(k-1)/(1 - x^k)^2, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 01 2025 *)
  • PARI
    a(n) = if(n < 1, 0, n * sigma(n, 5)); \\ Andrew Howroyd, Jul 23 2018

Formula

a(n) = A145095(n)/504 for n > 0.
G.f.: phi_{6, 1}(x) where phi_{r, s}(x) = Sum_{n, m>0} m^r * n^s * x^{m*n}.
a(n) = (A008410(n) - A282096(n))/1008. - Seiichi Manyama, Feb 10 2017
If p is a prime, a(p) = p^6 + p = A131472(p). - Seiichi Manyama, Feb 10 2017
a(n) = n*A001160(n) for n > 0. - Seiichi Manyama, Feb 18 2017
Sum_{k=1..n} a(k) ~ zeta(6) * n^7 / 7. - Amiram Eldar, Sep 06 2023
From Amiram Eldar, Oct 30 2023: (Start)
Multiplicative with a(p^e) = p^e * (p^(5*e+5)-1)/(p^5-1).
Dirichlet g.f.: zeta(s-1)*zeta(s-6). (End)
G.f. Sum_{k>=1} k^6*x^(k-1)/(1 - x^k)^2. - Vaclav Kotesovec, Aug 01 2025

A328259 a(n) = n * sigma_2(n).

Original entry on oeis.org

1, 10, 30, 84, 130, 300, 350, 680, 819, 1300, 1342, 2520, 2210, 3500, 3900, 5456, 4930, 8190, 6878, 10920, 10500, 13420, 12190, 20400, 16275, 22100, 22140, 29400, 24418, 39000, 29822, 43680, 40260, 49300, 45500, 68796, 50690, 68780, 66300, 88400, 68962, 105000, 79550, 112728, 106470
Offset: 1

Views

Author

Ilya Gutkovskiy, Oct 09 2019

Keywords

Comments

Moebius transform of A027847.

Crossrefs

Programs

  • Mathematica
    Table[n DivisorSigma[2, n], {n, 1, 45}]
    nmax = 45; CoefficientList[Series[Sum[k^3 x^k/(1 - x^k)^2, {k, 1, nmax}], {x, 0, nmax}], x] // Rest
  • PARI
    a(n) = n*sigma(n, 2); \\ Michel Marcus, Dec 02 2020

Formula

G.f.: Sum_{k>=1} k^3 * x^k / (1 - x^k)^2.
G.f.: Sum_{k>=1} k * x^k * (1 + 4 * x^k + x^(2*k)) / (1 - x^k)^4.
Dirichlet g.f.: zeta(s - 1) * zeta(s - 3).
Sum_{k=1..n} a(k) ~ zeta(3) * n^4 / 4. - Vaclav Kotesovec, Oct 09 2019
Multiplicative with a(p^e) = (p^(3*e+2) - p^e)/(p^2 - 1). - Amiram Eldar, Dec 02 2020
G.f.: Sum_{n >= 1} q^(n^2)*( n^4 - (2*n^4 - 4*n^3 - 3*n^2 - n)*q^n - (8*n^3 - 4*n)*q^(2*n) + (2*n^4 + 4*n^3 - 3*n^2 + n)*q^(3*n) - n^4*q^(4*n) )/(1 - q^n)^4. Apply the operator x*d/dx twice, followed by the operator q*d/dq once, to equation 5 in Arndt and then set x = 1. - Peter Bala, Jan 21 2021
a(n) = Sum_{k = 1..n} sigma_3( gcd(k, n) ) = Sum_{d divides n} sigma_3(d) * phi(n/d). - Peter Bala, Jan 19 2024
a(n) = Sum_{1 <= i, j, k <= n} sigma_1( gcd(i, j, k, n) ) = Sum_{d divides n} sigma_1(d) * J_3(n/d), where the Jordan totient function J_3(n) = A059376(n). - Peter Bala, Jan 22 2024

A282099 Coefficients in q-expansion of (E_2^2*E_4 - 2*E_2*E_6 + E_4^2)/1728, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively.

Original entry on oeis.org

0, 1, 36, 252, 1168, 3150, 9072, 16856, 37440, 61317, 113400, 161172, 294336, 371462, 606816, 793800, 1198336, 1420146, 2207412, 2476460, 3679200, 4247712, 5802192, 6436872, 9434880, 9844375, 13372632, 14900760, 19687808, 20511990, 28576800, 28630112, 38347776
Offset: 0

Views

Author

Seiichi Manyama, Feb 06 2017

Keywords

Comments

Multiplicative because A001158 is. - Andrew Howroyd, Jul 25 2018

Examples

			a(6) = 1^5*6^2 + 2^5*3^2 + 3^5*2^2 + 6^5*1^2 = 9072.
		

Crossrefs

Cf. A282097 (phi_{3, 2}), this sequence (phi_{5, 2}).
Cf. A006352 (E_2), A004009 (E_4), A013973 (E_6), A282208 (E_2^2*E_4), A282096 (E_2*E_6), A008410 (E_8 = E_4^2).
Cf. A001158 (sigma_3(n)), A281372 (n*sigma_3(n)), this sequence (n^2*sigma_3(n)), A282213 (n^3*sigma_3(n)).

Programs

  • Mathematica
    a[0]=0;a[n_]:=(n^2)*DivisorSigma[3,n];Table[a[n],{n,0,32}] (* Indranil Ghosh, Feb 21 2017 *)
    nmax = 40; CoefficientList[Series[Sum[k^5*x^k*(1 + x^k)/(1 - x^k)^3, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 02 2025 *)
  • PARI
    a(n) = if (n==0, 0, n^2*sigma(n, 3)); \\ Michel Marcus, Feb 21 2017

Formula

G.f.: phi_{5, 2}(x) where phi_{r, s}(x) = Sum_{n, m>0} m^r * n^s * x^{m*n}.
a(n) = (A282208(n) - 2*A282096(n) + A008410(n))/1728. - Seiichi Manyama, Feb 19 2017
a(n) = n^2*A001158(n) for n > 0. - Seiichi Manyama, Feb 19 2017
Sum_{k=1..n} a(k) ~ Pi^4 * n^6 / 540. - Vaclav Kotesovec, May 09 2022
From Amiram Eldar, Oct 30 2023: (Start)
Multiplicative with a(p^e) = p^(2*e) * (p^(3*e+3)-1)/(p^3-1).
Dirichlet g.f.: zeta(s-2)*zeta(s-5). (End)
G.f.: Sum_{k>=1} k^5*x^k*(1 + x^k)/(1 - x^k)^3. - Vaclav Kotesovec, Aug 02 2025

A280025 Expansion of phi_{7, 4}(x) where phi_{r, s}(x) = Sum_{n, m>0} m^r * n^s * x^{m*n}.

Original entry on oeis.org

0, 1, 144, 2268, 18688, 78750, 326592, 825944, 2396160, 4966677, 11340000, 19501812, 42384384, 62777078, 118935936, 178605000, 306774016, 410422194, 715201488, 894002060, 1471680000, 1873240992, 2808260928, 3405105288, 5434490880, 6152734375, 9039899232
Offset: 0

Views

Author

Seiichi Manyama, Feb 22 2017

Keywords

Comments

Multiplicative because A001158 is. - Andrew Howroyd, Jul 23 2018

Crossrefs

Cf. A280022 (phi_{5, 4}), this sequence (phi_{7, 4}).
Cf. A280024 (E_2^4*E_4), A282780 (E_2^3*E_6), A282752 (E_2^2*E_4^2), A282102 (E_2*E_4*E_6), A008411 (E_4^3), A280869 (E_6^2).
Cf. A001158 (sigma_3(n)), A281372 (n*sigma_3(n)), A282099 (n^2*sigma_3(n)), A282213 (n^3*sigma_3(n)), this sequence (n^4*sigma_3(n)).
Cf. A152649.

Programs

  • Mathematica
    Table[n^4 * DivisorSigma[3, n], {n, 0, 30}] (* Amiram Eldar, Oct 31 2023 *)
    nmax = 30; CoefficientList[Series[Sum[k^4*x^k*(1 + 120*x^k + 1191*x^(2*k) + 2416*x^(3*k) + 1191*x^(4*k) + 120*x^(5*k) + x^(6*k))/(1 - x^k)^8, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 02 2025 *)
  • PARI
    a(n) = if(n < 1, 0, n^4 * sigma(n, 3)); \\ Andrew Howroyd, Jul 23 2018

Formula

a(n) = n^4*A001158(n) for n > 0.
a(n) = (7*(A280024(n) - 4*A282780(n) + 6*A282752(n) - 4*A282102(n)) + 3*A008411(n) + 4*A280869(n))/41472.
Sum_{k=1..n} a(k) ~ c * n^8, where c = Pi^4/720 = 0.1352904... (= A152649 / 10). - Amiram Eldar, Dec 08 2022
From Amiram Eldar, Oct 31 2023: (Start)
Multiplicative with a(p^e) = p^(4*e) * (p^(3*e+3)-1)/(p^3-1).
Dirichlet g.f.: zeta(s-4)*zeta(s-7). (End)
G.f.: Sum_{k>=1} k^4*x^k*(1 + 120*x^k + 1191*x^(2*k) + 2416*x^(3*k) + 1191*x^(4*k) + 120*x^(5*k) + x^(6*k))/(1 - x^k)^8. - Vaclav Kotesovec, Aug 02 2025

A282213 Coefficients in q-expansion of (E_2^3*E_4 - 3*E_2^2*E_6 + 3*E_2*E_4^2 - E_4*E_6)/3456, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively.

Original entry on oeis.org

0, 1, 72, 756, 4672, 15750, 54432, 117992, 299520, 551853, 1134000, 1772892, 3532032, 4829006, 8495424, 11907000, 19173376, 24142482, 39733416, 47052740, 73584000, 89201952, 127648224, 148048056, 226437120, 246109375, 347688432, 402320520, 551258624, 594847710
Offset: 0

Views

Author

Seiichi Manyama, Feb 09 2017

Keywords

Comments

Multiplicative because A001158 is. - Andrew Howroyd, Jul 25 2018

Examples

			a(6) = 1^6*6^3 + 2^6*3^3 + 3^6*2^3 + 6^6*1^3 = 54432.
		

Crossrefs

Cf. A282211 (phi_{4, 3}), this sequence (phi_{6, 3}).
Cf. A006352 (E_2), A004009 (E_4), A013973 (E_6), A282586 (E_2^3*E_4), A282595 (E_2^2*E_6), A282101 (E_2*E_4^2), A013974 (E_4*E_6 = E_10).
Cf. A001158 (sigma_3(n)), A281372 (n*sigma_3(n)), A282099 (n^2*sigma_3(n)), this sequence (n^3*sigma_3(n))
Cf. A013662.

Programs

  • Mathematica
    terms = 30;
    E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}];
    E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}];
    E6[x_] = 1 - 504*Sum[k^5*x^k/(1 - x^k), {k, 1, terms}];
    (E2[x]^3*E4[x] - 3 E2[x]^2*E6[x] + 3 E2[x] E4[x]^2 - E4[x] E6[x])/3456 + O[x]^terms // CoefficientList[#, x]&
    (* or: *)
    Table[n^3*DivisorSigma[3, n], {n, 0, terms-1}] (* Jean-François Alcover, Feb 27 2018 *)
    nmax = 30; CoefficientList[Series[Sum[k^6*x^k*(x^(2*k) + 4*x^k + 1)/(1 - x^k)^4, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 02 2025 *)
  • PARI
    a(n) = if (n, n^3*sigma(n, 3), 0); \\ Michel Marcus, Feb 27 2018

Formula

G.f.: phi_{6, 3}(x) where phi_{r, s}(x) = Sum_{n, m>0} m^r * n^s * x^{m*n}.
a(n) = (A282586(n) - 3*A282595(n) + 3*A282101(n) - A013974(n))/3456. - Seiichi Manyama, Feb 19 2017
a(n) = n^3*A001158(n) for n > 0. - Seiichi Manyama, Feb 19 2017
Sum_{k=1..n} a(k) ~ zeta(4) * n^7 / 7. - Amiram Eldar, Sep 06 2023
From Amiram Eldar, Oct 31 2023: (Start)
Multiplicative with a(p^e) = p^(3*e) * (p^(3*e+3)-1)/(p^3-1).
Dirichlet g.f.: zeta(s-3)*zeta(s-6). (End)
G.f.: Sum_{k>=1} k^6*x^k*(x^(2*k) + 4*x^k + 1)/(1 - x^k)^4. - Vaclav Kotesovec, Aug 02 2025

A282254 Coefficients in q-expansion of (3*E_4^3 + 2*E_6^2 - 5*E_2*E_4*E_6)/1584, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively.

Original entry on oeis.org

0, 1, 1026, 59052, 1050628, 9765630, 60587352, 282475256, 1075843080, 3486961557, 10019536380, 25937424612, 62041684656, 137858491862, 289819612656, 576679982760, 1101663313936, 2015993900466, 3577622557482, 6131066257820, 10260044315640
Offset: 0

Views

Author

Seiichi Manyama, Feb 10 2017

Keywords

Comments

Multiplicative because A013957 is. - Andrew Howroyd, Jul 25 2018
D. H. Lehmer shows that a(n) == tau(n) (mod 7) for n > 0, where tau is Ramanujan's tau function (A000594). Furthermore, if n == 3, 5, 6 (mod 7) then a(n) == tau(n) (mod 49). See the Wikipedia link below. - Jianing Song, Aug 12 2020

Examples

			a(6) = 1^10*6^1 + 2^10*3^1 + 3^10*2^1 + 6^10*1^1 = 60587352.
		

Crossrefs

Cf. A064987 (phi_{2, 1}), A281372 (phi_{4, 1}), A282050 (phi_{6, 1}), A282060 (phi_{8, 1}), this sequence (phi_{10, 1}).
Cf. A006352 (E_2), A004009 (E_4), A013973 (E_6), A008411 (E_4^3), A280869 (E_6^2), A282102 (E_2*E_4*E_6).

Programs

  • Mathematica
    Table[If[n>0, n * DivisorSigma[9, n], 0], {n, 0, 20}] (* Indranil Ghosh, Mar 12 2017 *)
  • PARI
    for(n=0, 20, print1(if(n==0, 0, n * sigma(n, 9)),", ")) \\ Indranil Ghosh, Mar 12 2017

Formula

G.f.: phi_{10, 1}(x) where phi_{r, s}(x) = Sum_{n, m>0} m^r * n^s * x^{m*n}.
a(n) = (3*A008411(n) + 2*A280869(n) - 5*A282102(n))/1584.
If p is a prime, a(p) = p^10 + p = A196292(p).
a(n) = n*A013957(n) for n > 0, where A013957(n) is sigma_9(n), the sum of the 9th powers of the divisors of n. - Seiichi Manyama, Feb 18 2017
Multiplicative with a(p^e) = p^e*(p^(9*(e+1))-1)/(p^9-1). - Jianing Song, Aug 12 2020
From Amiram Eldar, Oct 30 2023: (Start)
Dirichlet g.f.: zeta(s-1)*zeta(s-10).
Sum_{k=1..n} a(k) ~ zeta(10) * n^11 / 11. (End)

A386749 a(n) = n*sigma_4(n).

Original entry on oeis.org

0, 1, 34, 246, 1092, 3130, 8364, 16814, 34952, 59787, 106420, 161062, 268632, 371306, 571676, 769980, 1118480, 1419874, 2032758, 2476118, 3417960, 4136244, 5476108, 6436366, 8598192, 9781275, 12624404, 14528268, 18360888, 20511178, 26179320, 28629182, 35791392, 39621252
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 01 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n*DivisorSigma(4, n): n in [1..35]]; // Vincenzo Librandi, Aug 02 2025
    
  • Mathematica
    Table[n*DivisorSigma[4, n], {n, 0, 50}]
    nmax = 50; CoefficientList[Series[x*Sum[k^5*x^(k-1)/(1 - x^k)^2, {k, 1, nmax}], {x, 0, nmax}], x]
  • PARI
    a(n) = if (n, n*sigma(n,4), 0); \\ Michel Marcus, Aug 02 2025

Formula

G.f.: Sum_{k>=1} k^5*x^(k-1)/(1 - x^k)^2.
a(n) = n*A001159(n).
Dirichlet g.f.: zeta(s-1)*zeta(s-5). - R. J. Mathar, Aug 03 2025

A386750 a(n) = n*sigma_6(n).

Original entry on oeis.org

0, 1, 130, 2190, 16644, 78130, 284700, 823550, 2130440, 4789539, 10156900, 19487182, 36450360, 62748530, 107061500, 171104700, 272696336, 410338690, 622640070, 893871758, 1300395720, 1803574500, 2533333660, 3404825470, 4665663600, 6103906275, 8157308900, 10474721820
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 01 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n*DivisorSigma(6,n): n in [1..25]]; // Vincenzo Librandi, Aug 02 2025
  • Mathematica
    Table[n*DivisorSigma[6, n], {n, 0, 40}]
    nmax = 40; CoefficientList[Series[x*Sum[k^7*x^(k-1)/(1 - x^k)^2, {k, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: Sum_{k>=1} k^7*x^(k-1)/(1 - x^k)^2.
a(n) = n*A013954(n).
Dirichlet g.f.: zeta(s-1)*zeta(s-7). - R. J. Mathar, Aug 03 2025

A386751 a(n) = n*sigma_8(n).

Original entry on oeis.org

0, 1, 514, 19686, 263172, 1953130, 10118604, 40353614, 134744072, 387479547, 1003908820, 2357947702, 5180803992, 10604499386, 20741757596, 38449317180, 68988964880, 118587876514, 199164487158, 322687697798, 514009128360, 794401245204, 1211985118828, 1801152661486
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 01 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n*DivisorSigma(8,n): n in [1..25]]; // Vincenzo Librandi, Aug 02 2025
  • Mathematica
    Table[n*DivisorSigma[8, n], {n, 0, 40}]
    nmax = 40; CoefficientList[Series[x*Sum[k^9*x^(k-1)/(1 - x^k)^2, {k, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: Sum_{k>=1} k^9*x^(k-1)/(1 - x^k)^2.
a(n) = n*A013956(n).
Dirichlet g.f.: zeta(s-1)*zeta(s-9). - R. J. Mathar, Aug 03 2025
Showing 1-10 of 16 results. Next