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.

A377378 a(n) = sum of row n of A376248.

Original entry on oeis.org

1, 3, 4, 7, 6, 25, 8, 15, 13, 47, 12, 90, 14, 77, 58, 31, 18, 90, 20, 250, 90, 161, 24, 301, 31, 215, 40, 554, 30, 490, 32, 63, 178, 347, 122, 301, 38, 425, 234, 1281, 42, 902, 44, 1786, 330, 605, 48, 966, 57, 250, 370, 2810, 54, 301, 218, 3909, 450, 935, 60, 2751
Offset: 1

Views

Author

Michael De Vlieger, Nov 14 2024

Keywords

Comments

For prime p, a(p) = A244974(p) = A000203(p) = p+1.
For prime power p^k, a(p^k) = A244974(p^k) = A000203(p^k).
For n in A024619, a(n) != A244974(n).

Crossrefs

Programs

  • Mathematica
    rad[x_] := rad[x] = Times @@ FactorInteger[x][[All, 1]];
    Block[{k}, Table[k = PrimeOmega[n];
      Total@ Select[Range[n^PrimeNu[n]],
        Divisible[n, rad[#]] && PrimeOmega[#] <= k &], {n, 60}]]