OFFSET
0,2
COMMENTS
The individual circles can have any radii; the lines are infinite.
REFERENCES
Jacob Steiner, Einige Gesetze über die Theilung der Ebene und des Raumes, J. Reine Angew. Math., 1 (1826), 349-364. See Eq. (23). [Note that the title uses the old spelling of Teilung. This is not a typo.] Note also that the formula in (23) is wrong if there are no lines, in that case (11) must be used.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..11324 (first 150 antidiagonals, flattened).
David O. H. Cutler, Jonas Karlsson, and Neil J. A. Sloane, Cutting a Pancake with an Exotic Knife, arXiv:2511.15864[math.CO], v3, April 19 2026.
FORMULA
T(n,k) = 1+k+2*n*k+k*(k-1)/2+n*(n-1), except T(n,0) = n^2-n+2 if n >= 1.
EXAMPLE
The array begins:
1, 2, 4, 7, 11, 16, 22, 29, 37, 46, 56, ...
2, 4, 8, 13, 19, 26, 34, 43, 53, 64, 76, ...
4, 8, 14, 21, 29, 38, 48, 59, 71, 84, 98, ...
8, 14, 22, 31, 41, 52, 64, 77, 91, 106, 122, ...
14, 22, 32, 43, 55, 68, 82, 97, 113, 130, 148, ...
22, 32, 44, 57, 71, 86, 102, 119, 137, 156, 176, ...
32, 44, 58, 73, 89, 106, 124, 143, 163, 184, 206, ...
44, 58, 74, 91, 109, 128, 148, 169, 191, 214, 238, ...
58, 74, 92, 111, 131, 152, 174, 197, 221, 246, 272, ...
74, 92, 112, 133, 155, 178, 202, 227, 253, 280, 308, ...
92, 112, 134, 157, 181, 206, 232, 259, 287, 316, 346, ...
...
The first few downward antidiagonals are:
1,
2, 2,
4, 4, 4,
7, 8, 8, 8,
11, 13, 14, 14, 14,
16, 19, 21, 22, 22, 22,
22, 26, 29, 31, 32, 32, 32,
29, 34, 38, 41, 43, 44, 44, 44,
37, 43, 48, 52, 55, 57, 58, 58, 58,
46, 53, 59, 64, 68, 71, 73, 74, 74, 74,...
MATHEMATICA
A393442[n_, k_] := n*(n-1) + If[k == 0 && n >= 1, 2, 1 + k + 2*n*k + k*(k-1)/2];
Table[A393442[k, n - k], {n, 0, 15}, {k, 0, n}] (* Paolo Xausa, Mar 30 2026 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Jonas Karlsson and N. J. A. Sloane, Mar 30 2026
STATUS
approved
