A349685 Irregular triangle read by rows: the n-th row contains the elements in the continued fraction of the abundancy index of n.
1, 1, 2, 1, 3, 1, 1, 3, 1, 5, 2, 1, 7, 1, 1, 7, 1, 2, 4, 1, 1, 4, 1, 11, 2, 3, 1, 13, 1, 1, 2, 2, 1, 1, 1, 2, 1, 1, 15, 1, 17, 2, 6, 1, 19, 2, 10, 1, 1, 1, 10, 1, 1, 1, 1, 3, 1, 23, 2, 2, 1, 4, 6, 1, 1, 1, 1, 1, 2, 1, 2, 13, 2, 1, 29, 2, 2, 2, 1, 31, 1, 1, 31
Offset: 1
Examples
The first ten rows of the triangle are: 1, 1, 2, 1, 3, 1, 1, 3, 1, 5, 2, 1, 7, 1, 1, 7, 1, 2, 4, 1, 1, 4, ...
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10489 (rows 1..2000)
Programs
-
Mathematica
row[n_] := ContinuedFraction[DivisorSigma[1, n]/n]; Table[row[k], {k, 1, 32}] // Flatten
-
PARI
row(n) = contfrac(sigma(n)/n); \\ Michel Marcus, Nov 25 2021
Comments