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

A386787 a(n) = n^4*sigma_7(n).

Original entry on oeis.org

0, 1, 2064, 177228, 4227328, 48828750, 365798592, 1977329144, 8657571840, 31395415077, 100782540000, 285311685252, 749200886784, 1792160422598, 4081207353216, 8653821705000, 17730707193856, 34271896391154, 64800136718928, 116490259028540, 206415142080000, 350438089532832
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 02 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n^4*DivisorSigma(7, n): n in [1..35]]; // Vincenzo Librandi, Aug 03 2025
  • Mathematica
    Table[n^4*DivisorSigma[7, n], {n, 0, 30}]
    (* or *)
    nmax = 30; CoefficientList[Series[Sum[k^4*x^k*(1 + 2036*x^k + 152637*x^(2*k) + 2203488*x^(3*k) + 9738114*x^(4*k) + 15724248*x^(5*k) + 9738114*x^(6*k) + 2203488*x^(7*k) + 152637*x^(8*k) + 2036*x^(9*k) + x^(10*k))/(1 - x^k)^12, {k, 1, nmax}], {x, 0, nmax}], x]
    (* or *)
    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}]; CoefficientList[Series[(33*E2[x]^4*E4[x]^2 + 110*E2[x]^2*E4[x]^3 + 13*E4[x]^4 - 132*E2[x]^3*E4[x]*E6[x] - 132*E2[x]*E4[x]^2*E6[x] + 88*E2[x]^2*E6[x]^2 + 20*E4[x]*E6[x]^2)/41472, {x, 0, terms}], x]

Formula

G.f.: Sum_{k>=1} k^4*x^k*(1 + 2036*x^k + 152637*x^(2*k) + 2203488*x^(3*k) + 9738114*x^(4*k) + 15724248*x^(5*k) + 9738114*x^(6*k) + 2203488*x^(7*k) + 152637*x^(8*k) + 2036*x^(9*k) + x^(10*k))/(1 - x^k)^12.
a(n) = (33*A386815(n) + 110*A386816(n) + 13*A282012(n) - 132*A386817(n) - 132*A282596(n) + 88*A386818(n) + 20*A282287(n))/41472.
a(n) = n^4*A013955(n).
Dirichlet g.f.: zeta(s-4)*zeta(s-11). - R. J. Mathar, Aug 03 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

A386785 a(n) = n^4*sigma_5(n).

Original entry on oeis.org

0, 1, 528, 19764, 270592, 1953750, 10435392, 40356008, 138547200, 389021373, 1031580000, 2357962332, 5347980288, 10604527934, 21307972224, 38613915000, 70936231936, 118587960018, 205403284944, 322687828100, 528669120000, 797596142112, 1245004111296, 1801152941304, 2738246860800
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 02 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n^4*DivisorSigma(5, n): n in [1..35]]; // Vincenzo Librandi, Aug 04 2025
  • Mathematica
    Table[n^4*DivisorSigma[5, n], {n, 0, 30}]
    (* or *)
    nmax = 30; CoefficientList[Series[Sum[k^4*x^k*(1 + 502*x^k + 14608*x^(2*k) + 88234*x^(3*k) + 156190*x^(4*k) + 88234*x^(5*k) + 14608*x^(6*k) + 502*x^(7*k) + x^(8*k))/(1 - x^k)^10, {k, 1, nmax}], {x, 0, nmax}], x]
    (* or *)
    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}]; CoefficientList[Series[(4*E2[x]^3*E4[x]^2 + 2*E2[x]*E4[x]^3 - E2[x]^4*E6[x] - 6*E2[x]^2*E4[x]*E6[x] - E4[x]^2*E6[x] + 2*E2[x]*E6[x]^2)/3456, {x, 0, terms}], x]

Formula

G.f.: Sum_{k>=1} k^4*x^k*(1 + 502*x^k + 14608*x^(2*k) + 88234*x^(3*k) + 156190*x^(4*k) + 88234*x^(5*k) + 14608*x^(6*k) + 502*x^(7*k) + x^(8*k))/(1 - x^k)^10.
a(n) = (4*A386813(n) + 2*A282549(n) - A386814(n) - 6*A282792(n) - A058550(n) + 2*A282576(n))/3456.
a(n) = n^4*A001160(n).
Dirichlet g.f.: zeta(s-4)*zeta(s-9). - R. J. Mathar, Aug 03 2025

A386783 a(n) = n^4*sigma_2(n).

Original entry on oeis.org

0, 1, 80, 810, 5376, 16250, 64800, 120050, 348160, 597051, 1300000, 1786202, 4354560, 4855370, 9604000, 13162500, 22347776, 24221090, 47764080, 47176202, 87360000, 97240500, 142896160, 148315730, 282009600, 254296875, 388429600, 435781620, 645388800, 595530602, 1053000000
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 02 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n^4*DivisorSigma(2, n): n in [1..35]]; // Vincenzo Librandi, Aug 03 2025
  • Mathematica
    Table[n^4*DivisorSigma[2, n], {n, 0, 40}]
    nmax = 40; CoefficientList[Series[Sum[k^4*x^k*(1 + 57*x^k + 302*x^(2*k) + 302*x^(3*k) + 57*x^(4*k) + x^(5*k)) / (1 - x^k)^7, {k, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: Sum_{k>=1} k^4*x^k*(1 + 57*x^k + 302*x^(2*k) + 302*x^(3*k) + 57*x^(4*k) + x^(5*k)) / (1 - x^k)^7.
a(n) = n^4*A001157(n).
Dirichlet g.f.: zeta(s-4)*zeta(s-6). - R. J. Mathar, Aug 03 2025

A386784 a(n) = n^4*sigma_4(n).

Original entry on oeis.org

0, 1, 272, 6642, 69888, 391250, 1806624, 5767202, 17895424, 43584723, 106420000, 214373522, 464196096, 815759282, 1568678944, 2598682500, 4581294080, 6975840962, 11855044656, 16983693362, 27343680000, 38305755684, 58309597984, 78311265122, 118861406208, 152832421875
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 02 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n^4*DivisorSigma(4, n): n in [1..35]]; // Vincenzo Librandi, Aug 03 2025
  • Mathematica
    Table[n^4*DivisorSigma[4, n], {n, 0, 40}]
    nmax = 40; CoefficientList[Series[Sum[k^4*x^k*(1 + 247*x^k + 4293*x^(2*k) + 15619*x^(3*k) + 15619*x^(4*k) + 4293*x^(5*k) + 247*x^(6*k) + x^(7*k))/(1 - x^k)^9, {k, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: Sum_{k>=1} k^4*x^k*(1 + 247*x^k + 4293*x^(2*k) + 15619*x^(3*k) + 15619*x^(4*k) + 4293*x^(5*k) + 247*x^(6*k) + x^(7*k))/(1 - x^k)^9.
a(n) = n^4*A001159(n).
Dirichlet g.f.: zeta(s-4)*zeta(s-8). - R. J. Mathar, Aug 03 2025

A386786 a(n) = n^4*sigma_6(n).

Original entry on oeis.org

0, 1, 1040, 59130, 1065216, 9766250, 61495200, 282477650, 1090785280, 3491573931, 10156900000, 25937439242, 62986222080, 137858520410, 293776756000, 577478362500, 1116964192256, 2015993983970, 3631236888240, 6131066388122, 10403165760000, 16702903444500, 26974936811680
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 02 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n^4*DivisorSigma(6, n): n in [1..35]]; // Vincenzo Librandi, Aug 03 2025
  • Mathematica
    Table[n^4*DivisorSigma[6, n], {n, 0, 30}]
    nmax = 30; CoefficientList[Series[Sum[k^4*x^k*(1 + 1013*x^k + 47840*x^(2*k) + 455192*x^(3*k) + 1310354*x^(4*k) + 1310354*x^(5*k) + 455192*x^(6*k) + 47840*x^(7*k) + 1013*x^(8*k) + x^(9*k))/(1 - x^k)^11, {k, 1, nmax}], {x, 0, nmax}], x]

Formula

G.f.: Sum_{k>=1} k^4*x^k*(1 + 1013*x^k + 47840*x^(2*k) + 455192*x^(3*k) + 1310354*x^(4*k) + 1310354*x^(5*k) + 455192*x^(6*k) + 47840*x^(7*k) + 1013*x^(8*k) + x^(9*k))/(1 - x^k)^11.
a(n) = n^4*A013954(n).
Dirichlet g.f.: zeta(s-4)*zeta(s-10). - R. J. Mathar, Aug 03 2025

A386788 a(n) = n^4*sigma_8(n).

Original entry on oeis.org

0, 1, 4112, 531522, 16843008, 244141250, 2185618464, 13841289602, 68988964864, 282472589763, 1003908820000, 3138428391362, 8952429298176, 23298085151042, 56915382843424, 129766445482500, 282578800148480, 582622237313282, 1161527289105456, 2213314919196482, 4112073026880000
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 02 2025

Keywords

Crossrefs

Programs

  • Magma
    [0] cat [n^4*DivisorSigma(8, n): n in [1..35]]; // Vincenzo Librandi, Aug 03 2025
    
  • Mathematica
    Table[n^4*DivisorSigma[8, n], {n, 0, 30}]
    nmax = 30; CoefficientList[Series[Sum[k^4*x^k*(1 + 4083*x^k + 478271*x^(2*k) + 10187685*x^(3*k) + 66318474*x^(4*k) + 162512286*x^(5*k) + 162512286*x^(6*k) + 66318474*x^(7*k) + 10187685*x^(8*k) + 478271*x^(9*k) + 4083*x^(10*k) + x^(11*k))/(1 - x^k)^13, {k, 1, nmax}], {x, 0, nmax}], x]
  • PARI
    a(n) = if (n, n^4*sigma(n,8), 0); \\ Michel Marcus, Aug 03 2025

Formula

G.f.: Sum_{k>=1} k^4*x^k*(1 + 4083*x^k + 478271*x^(2*k) + 10187685*x^(3*k) + 66318474*x^(4*k) + 162512286*x^(5*k) + 162512286*x^(6*k) + 66318474*x^(7*k) + 10187685*x^(8*k) + 478271*x^(9*k) + 4083*x^(10*k) + x^(11*k))/(1 - x^k)^13.
a(n) = n^4*A013956(n).
Dirichlet g.f.: zeta(s-4)*zeta(s-12). - R. J. Mathar, Aug 03 2025

A372937 a(n) = Sum_{1 <= x_1, x_2, x_3, x_4 <= n} gcd(x_1, x_2, x_3, x_4, n)^5.

Original entry on oeis.org

1, 47, 323, 1744, 3749, 15181, 19207, 59648, 84969, 176203, 175691, 563312, 399853, 902729, 1210927, 1970176, 1503377, 3993543, 2606419, 6538256, 6203861, 8257477, 6716183, 19266304, 12105625, 18793091, 21172347, 33497008, 21218429, 56913569, 29552671, 64028672
Offset: 1

Views

Author

Seiichi Manyama, May 17 2024

Keywords

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := p^(4*e-4)*(p^e*(p^5-1) - (p^4-1))/(p-1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, May 21 2024 *)
  • PARI
    a(n) = sumdiv(n, d, moebius(n/d)*d^4*sigma(d));

Formula

a(n) = Sum_{1 <= x_1, x_2, x_3, x_4, x_5 <= n} gcd(x_1, x_2, x_3, x_4, x_5, n)^4.
a(n) = Sum_{d|n} mu(n/d) * d^4 * sigma(d), where mu is the Moebius function A008683.
From Amiram Eldar, May 21 2024: (Start)
Multiplicative with a(p^e) = p^(4*e-4)*(p^e*(p^5-1) - (p^4-1))/(p-1).
Dirichlet g.f.: zeta(s-4)*zeta(s-5)/zeta(s).
Sum_{k=1..n} a(k) ~ c * n^6 / 6, c = zeta(2)/zeta(6) = 315/(2*Pi^4) = 1.616892... (A157292). (End)
Mobius transformation of A280022. - R. J. Mathar, Jul 14 2025
Showing 1-8 of 8 results.