login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A054067 A250190 A244342 * A056906 A257056 A209249
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 31 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)