login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A225215
Floor of the Euclidean distance of a point on the (1, 1, 1; 1, 1, 1) 3D walk.
2
1, 1, 1, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 8, 8, 9, 9, 10, 11, 11, 12, 12, 13, 13, 14, 15, 15, 16, 16, 17, 17, 18, 19, 19, 20, 20, 21, 21, 22, 23, 23, 24, 24, 25, 25, 26, 27, 27, 28, 28, 29, 30, 30, 31, 31, 32, 32, 33, 34, 34, 35, 35, 36, 36, 37, 38, 38, 39, 39, 40, 41, 41, 42, 42, 43, 43, 44, 45, 45, 46, 46, 47, 47, 48, 49, 49, 50, 50
OFFSET
1,4
COMMENTS
Consider a standard 3-dimensional Euclidean lattice. We take 1 step along the positive x-axis, 1 along the positive y-axis, 1 along the positive z-axis, 1 along the positive x-axis, and so on. After 3, 6, 9, 12, 15 etc steps we have returned to the space diagonal (with equal x, y and z coordinates).
This sequence gives the floor of the Euclidean distance to the origin after n steps.
FORMULA
a(n) ~ n/sqrt(3). - Charles R Greathouse IV, May 02 2013
a(n) = floor(sqrt(A008810(n))), where A008810(n) is the squared Euclidean distance after n steps. - R. J. Mathar, May 02 2013
PROG
(JavaScript)
p = new Array(0, 0, 0);
for (a = 1; a < 100; a++) {
p[a%3] += 1;
document.write(Math.floor(Math.sqrt(p[0] * p[0] + p[1] * p[1] + p[2] * p[2])) + ", ");
}
CROSSREFS
Sequence in context: A370457 A361234 A065603 * A214672 A268060 A084242
KEYWORD
nonn,easy
AUTHOR
Jon Perry, May 02 2013
STATUS
approved