OFFSET
1,1
COMMENTS
From Martin Fuller, Mar 05 2026: (Start)
The spheres are arranged in concentric rings. Bends in ring m = 1, 2... are given by 4(x^2 + xy + y^2) - 1 with x + y = m and x = 0..m-1 repeated six times. Compare A270248. The surrounding unit sphere with bend -1 could be considered to be in ring m = 0.
There are six radial lines of touching spheres with bends given by A000466. (End)
LINKS
SeqFan group, RFE Mar 2026: Soddy's bowl of integers
Frederick Soddy, The Bowl of Integers and the Hexlet, Nature 139, 77-79, 1937 [Accessible copy]
Eric Weisstein's World of Mathematics, Bowl of Integers
FORMULA
a(n) = A270248(n+1)-1. - Martin Fuller, Mar 05 2026
PROG
(PARI) a(limit)={
my(s = Set);
for(m = 1, oo,
my(ring = Set(apply(x->my(y=m-x); 4*(x^2+x*y+y^2)-1, [0..m-1])));
if(#s >= limit && ring[1] > s[limit], return(s[1..limit]));
s = setunion(s, ring);
);
}; \\ Martin Fuller, Mar 07 2026
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
EXTENSIONS
a(30) onward from Martin Fuller, Mar 05 2026
STATUS
approved
