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!)
A356076 a(n) = Sum_{k=1..n} sigma_k(k) * floor(n/k). 1
1, 7, 36, 315, 3442, 50926, 874471, 17717759, 405157961, 10414927743, 295726598356, 9214021189459, 312089127781714, 11424774177252514, 449318695090042077, 18896344248088180470, 846136606134424944649, 40192694877626991357901 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1..n} Sum_{d|k} sigma_d(d).
G.f.: (1/(1-x)) * Sum_{k>=1} sigma_k(k) * x^k/(1 - x^k).
a(n) ~ n^n. - Vaclav Kotesovec, Aug 07 2022
PROG
(PARI) a(n) = sum(k=1, n, sigma(k, k)*(n\k));
(PARI) a(n) = sum(k=1, n, sumdiv(k, d, sigma(d, d)));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, sigma(k, k)*x^k/(1-x^k))/(1-x))
(Python)
from sympy import divisor_sigma
def A356079(n): return n+sum(divisor_sigma(k, k)*(n//k) for k in range(2, n+1)) # Chai Wah Wu, Jul 25 2022
CROSSREFS
Partial sums of A344434.
Sequence in context: A333060 A331719 A020085 * A120106 A240274 A129737
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 25 2022
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 16 16:35 EDT 2024. Contains 371749 sequences. (Running on oeis4.)