cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A081860 a(n) = Sum_{k=0..n-1} sigma(2k+1)*sigma_3(n-k).

Original entry on oeis.org

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
Offset: 1

Views

Author

Benoit Cloitre, Apr 11 2003

Keywords

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.

Crossrefs

Programs

  • Magma
    [(DivisorSigma(5, 2*n+1)-DivisorSigma(1, 2*n+1))/240: n in [1..40]]; // Vincenzo Librandi, Aug 13 2018
  • 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 *)
  • 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
    

Formula

a(n) = (1/240)*(sigma_5(2n+1)-sigma(2n+1)) (see A081863(2)).

Extensions

Three more terms from Michel Marcus, Dec 04 2013