A372667 Norm i^2+j^2+k^2 of (i,j,k) for 0 <= k <= j <= i.
0, 1, 2, 3, 4, 5, 6, 8, 9, 12, 9, 10, 11, 13, 14, 17, 18, 19, 22, 27, 16, 17, 18, 20, 21, 24, 25, 26, 29, 34, 32, 33, 36, 41, 48, 25, 26, 27, 29, 30, 33, 34, 35, 38, 43, 41, 42, 45, 50, 57, 50, 51, 54, 59, 66, 75, 36, 37, 38, 40, 41, 44, 45, 46, 49, 54, 52, 53
Offset: 0
Examples
The first few triples are: 0, 0, 0 1, 0, 0 1, 1, 0 1, 1, 1 2, 0, 0 2, 1, 0 2, 1, 1 2, 2, 0 2, 2, 1 2, 2, 2 3, 0, 0 ...
References
- C. Suryanarayana and M. Grant Norton, X-Ray Diffraction - A Practical Approach, Springer Science + Business Media, 1998, p. 83.
Links
- Robert Israel, Table of n, a(n) for n = 0..10000
- S. Phil Ahrenkiel, List of the first few Miller indices, in order, excluding (0 0 0)
Crossrefs
Programs
-
Maple
a:=[]; for i from 0 to 10 do for j from 0 to i do for k from 0 to j do a:=[op(a),i^2+j^2+k^2]; od: od: od: a; # N. J. A. Sloane, Jun 03 2024
-
Python
print([i**2 + j**2 + k**2 for i in range(7) for j in range(i+1) for k in range(j+1)]) # Andrey Zabolotskiy, May 09 2024
Extensions
More terms from Andrey Zabolotskiy, May 09 2024
Comments