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!)
A064609 Partial sums of A034448: sum of unitary divisors from 1 to n. 9
1, 4, 8, 13, 19, 31, 39, 48, 58, 76, 88, 108, 122, 146, 170, 187, 205, 235, 255, 285, 317, 353, 377, 413, 439, 481, 509, 549, 579, 651, 683, 716, 764, 818, 866, 916, 954, 1014, 1070, 1124, 1166, 1262, 1306, 1366, 1426, 1498, 1546, 1614, 1664, 1742, 1814, 1884 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = a(n-1) + A034448(n) = Sum_{j=1..n} usigma(j) where usigma(j) = A034448(j).
a(n) ~ Pi^2 * n^2 / (12*Zeta(3)). - Vaclav Kotesovec, Jan 11 2019
MATHEMATICA
Accumulate@ Table[DivisorSum[n, # &, CoprimeQ[#, n/#] &], {n, 52}] (* Michael De Vlieger, Mar 18 2017 *)
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) }
{ a=0; for (n=1, 1000, a+=usigma(n); write("b064609.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 20 2009
(Python)
from sympy.ntheory.factor_ import udivisor_sigma
def a(n): return sum(udivisor_sigma(j, 1) for j in range(1, n + 1))
print([a(n) for n in range(1, 101)]) # Indranil Ghosh, Mar 18 2017
CROSSREFS
Sequence in context: A365700 A362290 A183865 * A327566 A307159 A365697
KEYWORD
nonn
AUTHOR
Labos Elemer, Sep 24 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 July 12 23:13 EDT 2024. Contains 374257 sequences. (Running on oeis4.)