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.

Showing 1-2 of 2 results.

A279917 a(n) = Sum_{k=1..n-1} sigma_5(k)*sigma_7(n-k).

Original entry on oeis.org

0, 1, 162, 6689, 121250, 1296406, 9613604, 54550049, 252178758, 992204376, 3424910566, 10615778966, 30047257318, 78751366604, 193075366412, 446840757793, 982597838280, 2066025009763, 4171924730922, 8127978871064, 15324653827568, 28059983210370
Offset: 1

Views

Author

Seiichi Manyama, Dec 23 2016

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := (DivisorSigma[13, n] + 20 * DivisorSigma[7, n] - 21 * DivisorSigma[5, n]) / 10080; Array[a, 25] (* Amiram Eldar, Jan 07 2025 *)
  • PARI
    a(n) = {my(f = factor(n)); (sigma(f, 13) + 20 * sigma(f, 7) - 21 * sigma(f, 5)) / 10080;} \\ Amiram Eldar, Jan 07 2025

Formula

a(n) = (sigma_13(n)+20*sigma_7(n)-21*sigma_5(n))/10080.

A279926 a(n) = Sum_{k=1..n-1} sigma_3(k)*sigma_9(n-k).

Original entry on oeis.org

0, 1, 522, 24329, 454250, 4905766, 36532244, 207705929, 961214238, 3784166376, 13066960126, 40511160326, 114681233758, 300599979884, 737035375772, 1705830324553, 3751239987240, 7887626314003, 15927815870322, 31031953887704, 58508991327728, 107133058597170
Offset: 1

Views

Author

Seiichi Manyama, Dec 23 2016

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[If[k == 0, 0, DivisorSigma[3, k]] DivisorSigma[9, n - k], {k, 0, n - 1}], {n, 22}] (* Michael De Vlieger, Dec 23 2016 *)
  • PARI
    a(n) = sum(k=1, n-1, sigma(k, 3)*sigma(n-k, 9)) \\ Felix Fröhlich, Dec 23 2016

Formula

a(n) = (sigma_13(n) - 11*sigma_9(n) + 10*sigma_3(n))/2640.
Showing 1-2 of 2 results.