login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A064212
a(n) = sigma(n) + usigma(n) = A000203(n) + A034448(n).
2
2, 6, 8, 12, 12, 24, 16, 24, 23, 36, 24, 48, 28, 48, 48, 48, 36, 69, 40, 72, 64, 72, 48, 96, 57, 84, 68, 96, 60, 144, 64, 96, 96, 108, 96, 141, 76, 120, 112, 144, 84, 192, 88, 144, 138, 144, 96, 192, 107, 171, 144, 168, 108, 204, 144, 192, 160
OFFSET
1,1
LINKS
FORMULA
Sum_{k=1..n} a(k) ~ (Pi^2/12)*(1 + 1/zeta(3)) * n^2. - Amiram Eldar, Apr 01 2024
MATHEMATICA
f1[p_, e_] := (p^(e + 1) - 1)/(p - 1); f2[p_, e_] := p^e + 1; a[n_] := Times @@ f1 @@@ (fct = FactorInteger[n]) + Times @@ f2 @@@ fct; a[1] = 2; Array[a, 100] (* Amiram Eldar, Apr 01 2024 *)
PROG
(PARI) usigma(n)= { local(f, s=1); f=factor(n); for(i=1, matsize(f)[1], s*=1 + f[i, 1]^f[i, 2]); return(s) }
{ for (n=1, 1000, write("b064212.txt", n, " ", sigma(n) + usigma(n)) ) } \\ Harry J. Smith, Sep 10 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 31 2001
STATUS
approved