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!)
A374963 a(n) = Sum_{k=1..n-1} sigma(k)*sigma_3(n-k). 2
0, 1, 12, 59, 200, 526, 1184, 2399, 4368, 7656, 12316, 19586, 29008, 43244, 60272, 85543, 114000, 156163, 200652, 266504, 333968, 432570, 528704, 673706, 806200, 1008644, 1192584, 1467684, 1707328, 2084676, 2390848, 2882487, 3286168, 3913722, 4409584, 5237489 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Convolution of sigma with sigma_3.
LINKS
MATHEMATICA
Table[Sum[DivisorSigma[1, k] *DivisorSigma[3, n-k], {k, n-1}], {n, 36}] (* James C. McMahon, Aug 11 2024 *)
PROG
(Python)
from sympy import divisor_sigma
def A374963(n): return sum(divisor_sigma(i)*divisor_sigma(n-i, 3) for i in range(1, n))
CROSSREFS
Sequence in context: A242983 A167533 A244907 * A062477 A048362 A231215
KEYWORD
nonn,easy
AUTHOR
Chai Wah Wu, Jul 25 2024
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 September 13 15:45 EDT 2024. Contains 375908 sequences. (Running on oeis4.)