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.

A336652 Sum of positive divisors of odd part of n that are divisible by every (odd) prime dividing it: a(n) = A057723(A000265(n)).

Original entry on oeis.org

1, 1, 3, 1, 5, 3, 7, 1, 12, 5, 11, 3, 13, 7, 15, 1, 17, 12, 19, 5, 21, 11, 23, 3, 30, 13, 39, 7, 29, 15, 31, 1, 33, 17, 35, 12, 37, 19, 39, 5, 41, 21, 43, 11, 60, 23, 47, 3, 56, 30, 51, 13, 53, 39, 55, 7, 57, 29, 59, 15, 61, 31, 84, 1, 65, 33, 67, 17, 69, 35, 71, 12, 73, 37, 90, 19, 77, 39, 79, 5, 120, 41, 83, 21, 85, 43
Offset: 1

Views

Author

Antti Karttunen, Jul 30 2020

Keywords

Crossrefs

Programs

  • Mathematica
    f[2, e_] := 1; f[p_, e_] := (p^(e+1) - 1)/(p-1) - 1; a[1] = 1; a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* Amiram Eldar, Dec 07 2020 *)
  • PARI
    A336652(n) = if(1==n,n,my(f=factor(n)); prod(i=1,#f~,if(2==f[i,1],1,-1+(((f[i,1]^(1+f[i,2]))-1) / (f[i,1]-1)))));

Formula

Multiplicative with a(2^e) = 1, and for odd primes p, a(p^e) = (p + p^2 + ... + p^e) = sigma(p^e)-1.
a(n) = A057723(A000265(n)).
a(n) = A204455(n) * A336649(n).
Sum_{k=1..n} a(k) ~ c * n^2, where c = (Pi^2/21) * Product_{p prime} (1 - 1/p^2 + 1/p^3) = (Pi^2/21) * A330596 = 0.3517974711... . - Amiram Eldar, Nov 12 2022