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.

A347143 Sum of 4th powers of divisors of n that are <= sqrt(n).

Original entry on oeis.org

1, 1, 1, 17, 1, 17, 1, 17, 82, 17, 1, 98, 1, 17, 82, 273, 1, 98, 1, 273, 82, 17, 1, 354, 626, 17, 82, 273, 1, 723, 1, 273, 82, 17, 626, 1650, 1, 17, 82, 898, 1, 1394, 1, 273, 707, 17, 1, 1650, 2402, 642, 82, 273, 1, 1394, 626, 2674, 82, 17, 1, 2275, 1, 17, 2483, 4369, 626
Offset: 1

Views

Author

Ilya Gutkovskiy, Aug 19 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Table[DivisorSum[n, #^4 &, # <= Sqrt[n] &], {n, 1, 65}]
    nmax = 65; CoefficientList[Series[Sum[k^4 x^(k^2)/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
  • PARI
    A347143(n) = { my(s=0); fordiv(n,d,if((d^2)>n,return(s)); s += (d^4)); (s); }; \\ Antti Karttunen, Aug 19 2021

Formula

G.f.: Sum_{k>=1} k^4 * x^(k^2) / (1 - x^k).

A347158 Sum of 4th powers of distinct prime divisors of n that are < sqrt(n).

Original entry on oeis.org

0, 0, 0, 0, 0, 16, 0, 16, 0, 16, 0, 97, 0, 16, 81, 16, 0, 97, 0, 16, 81, 16, 0, 97, 0, 16, 81, 16, 0, 722, 0, 16, 81, 16, 625, 97, 0, 16, 81, 641, 0, 97, 0, 16, 706, 16, 0, 97, 0, 641, 81, 16, 0, 97, 625, 2417, 81, 16, 0, 722, 0, 16, 2482, 16, 625, 97, 0, 16, 81, 3042
Offset: 1

Views

Author

Ilya Gutkovskiy, Aug 20 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Table[DivisorSum[n, #^4 &, # < Sqrt[n] && PrimeQ[#] &], {n, 1, 70}]
    nmax = 70; CoefficientList[Series[Sum[Prime[k]^4 x^(Prime[k] (Prime[k] + 1))/(1 - x^Prime[k]), {k, 1, nmax}], {x, 0, nmax}], x] // Rest

Formula

G.f.: Sum_{k>=1} prime(k)^4 * x^(prime(k)*(prime(k) + 1)) / (1 - x^prime(k)).

A347172 Sum of 4th powers of odd divisors of n that are < sqrt(n).

Original entry on oeis.org

0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 82, 1, 1, 82, 1, 1, 82, 1, 1, 82, 1, 1, 82, 1, 1, 82, 1, 1, 707, 1, 1, 82, 1, 626, 82, 1, 1, 82, 626, 1, 82, 1, 1, 707, 1, 1, 82, 1, 626, 82, 1, 1, 82, 626, 2402, 82, 1, 1, 707, 1, 1, 2483, 1, 626, 82, 1, 1, 82, 3027, 1, 82, 1, 1, 707
Offset: 1

Views

Author

Ilya Gutkovskiy, Aug 21 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Table[DivisorSum[n, #^4 &, # < Sqrt[n] && OddQ[#] &], {n, 1, 75}]
    nmax = 75; CoefficientList[Series[Sum[(2 k - 1)^4 x^(2 k (2 k - 1))/(1 - x^(2 k - 1)), {k, 1, nmax}], {x, 0, nmax}], x] // Rest

Formula

G.f.: Sum_{k>=1} (2*k - 1)^4 * x^(2*k*(2*k - 1)) / (1 - x^(2*k - 1)).
Showing 1-3 of 3 results.