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.

Previous Showing 11-12 of 12 results.

A319526 Square array read by antidiagonals upwards: T(n,k) = sigma(n*k), n >= 1, k >= 1.

Original entry on oeis.org

1, 3, 3, 4, 7, 4, 7, 12, 12, 7, 6, 15, 13, 15, 6, 12, 18, 28, 28, 18, 12, 8, 28, 24, 31, 24, 28, 8, 15, 24, 39, 42, 42, 39, 24, 15, 13, 31, 32, 60, 31, 60, 32, 31, 13, 18, 39, 60, 56, 72, 72, 56, 60, 39, 18, 12, 42, 40, 63, 48, 91, 48, 63, 40, 42, 12, 28, 36, 72, 91, 90, 96, 96, 90, 91, 72, 36, 28
Offset: 1

Views

Author

Omar E. Pol, Sep 25 2018

Keywords

Examples

			The corner of the square array begins:
A000203:    1,   3,   4,   7,   6,  12,   8,  15,  13,  18,  12,  28, ...
A062731:    3,   7,  12,  15,  18,  28,  24,  31,  39,  42,  36,  60, ...
A144613:    4,  12,  13,  28,  24,  39,  32,  60,  40,  72,  48,  91, ...
A193553:    7,  15,  28,  31,  42,  60,  56,  63,  91,  90,  84, 124, ...
A283118:    6,  18,  24,  42,  31,  72,  48,  90,  78,  93,  72, 168, ...
A224613:   12,  28,  39,  60,  72,  91,  96, 124, 120, 168, 144, 195, ...
A283078:    8,  24,  32,  56,  48,  96,  57, 120, 104, 144,  96, 224, ...
A283122:   15,  31,  60,  63,  90, 124, 120, 127, 195, 186, 180, 252, ...
A283123:   13,  39,  40,  91,  78, 120, 104, 195, 121, 234, 156, 280, ...
...
		

Crossrefs

First 9 rows (also first 9 columns) are A000203, A062731, A144613, A193553, A283118, A224613, A283078, A283122, A283123.
Main diagonal gives A065764.

Programs

  • Mathematica
    Table[DivisorSigma[1, # k] &[m - k + 1], {m, 12}, {k, m}] // Flatten (* Michael De Vlieger, Dec 31 2018 *)

Formula

T(n,k) = A000203(n*k).
T(n,k) = A000203(A003991(n,k)).

A372675 a(n) = Sum_{j=1..n} Sum_{k=1..n} sigma(j*k).

Original entry on oeis.org

1, 14, 59, 190, 401, 914, 1499, 2632, 4113, 6424, 8645, 13284, 17023, 23092, 30715, 40484, 48711, 63890, 75351, 95792, 116421, 139822, 159911, 199176, 229499, 267438, 309283, 364462, 404933, 482792, 532553, 611208, 688593, 772540, 862471, 998760, 1083615, 1200328
Offset: 1

Views

Author

Vaclav Kotesovec, May 10 2024

Keywords

Comments

Sum_{j=1..n} sigma(j*k) ~ A069097(k) * Pi^2 * n^2 / (12*k).

Crossrefs

Programs

  • Mathematica
    Table[Sum[DivisorSigma[1, j*k], {j, 1, n}, {k, 1, n}], {n, 1, 50}]
    s = 1; Join[{1}, Table[s += DivisorSigma[1, n^2] + 2*Sum[DivisorSigma[1, j*n], {j, 1, n - 1}], {n, 2, 50}]]

Formula

a(n) ~ c * n^4, where c = Pi^4 / (144*zeta(3)) = 0.56274...
Previous Showing 11-12 of 12 results.