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!)
A081860 a(n) = Sum_{k=0..n-1} sigma(2k+1)*sigma_3(n-k). 1
1, 13, 70, 247, 671, 1547, 3178, 5916, 10317, 17088, 26818, 40703, 60034, 85463, 119288, 163736, 218924, 288933, 377482, 482734, 612535, 772291, 955604, 1177050, 1443522, 1742481, 2097702, 2517368, 2978851, 3519151, 4152486, 4836104, 5625521, 6543616, 7517622 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
An amazing Ramanujan identity. Here sigma_m(n) denotes Sum_{d|n} d^m.
REFERENCES
Bruce Berndt, Ramanujan's Notebooks Part II, Springer-Verlag; page 301.
LINKS
FORMULA
a(n) = (1/240)*(sigma_5(2n+1)-sigma(2n+1)) (see A081863(2)).
MAPLE
f:= n -> 1/240*(numtheory:-sigma[5](2*n+1)-numtheory:-sigma(2*n+1)):
map(f, [$1..100]); # Robert Israel, Aug 12 2018
MATHEMATICA
lst={}; Do[AppendTo[lst, DivisorSigma[5, 2 n + 1] - DivisorSigma[1, 2 n + 1]], {n, 40}]; lst / 240 (* Vincenzo Librandi, Aug 13 2018 *)
Table[Sum[DivisorSigma[1, 2k+1]DivisorSigma[3, n-k], {k, 0, n-1}], {n, 35}] (* Harvey P. Dale, Jul 25 2020 *)
PROG
(PARI) a(n) = sum(k=0, n-1, sigma(2*k+1)*sigma(n-k, 3)); \\ Michel Marcus, Dec 04 2013
(PARI) a(n) = (sigma(2*n+1, 5) - sigma(2*n+1))/240; \\ Michel Marcus, Dec 04 2013
(Magma) [(DivisorSigma(5, 2*n+1)-DivisorSigma(1, 2*n+1))/240: n in [1..40]]; // Vincenzo Librandi, Aug 13 2018
CROSSREFS
Sequence in context: A146469 A146381 A085461 * A050403 A235454 A296831
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Apr 11 2003
EXTENSIONS
Three more terms from Michel Marcus, Dec 04 2013
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)