The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A353386 Sums of two squares obtained by expanding a k X k matrix to (k+1) X (k+1) and taking the not yet seen squared distances of all positions in the matrix. 2
1, 2, 4, 5, 8, 9, 10, 13, 18, 16, 17, 20, 25, 32, 26, 29, 34, 41, 50, 36, 37, 40, 45, 52, 61, 72, 49, 53, 58, 65, 74, 85, 98, 64, 68, 73, 80, 89, 100, 113, 128, 81, 82, 90, 97, 106, 117, 130, 145, 162, 101, 104, 109, 116, 125, 136, 149, 164, 181, 200, 121, 122, 137, 146, 157, 170, 185, 202, 221, 242 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The terms are a permutation of the positive terms of A001481.
LINKS
EXAMPLE
The sequence can be viewed as a table with line lengths A047800(k+1) - A047800(k), in which the not yet seen sums of squares form a table line. The table starts:
1, 2,
4, 5, 8,
9, 10, 13, 18,
16, 17, 20, 25, 32,
26, 29, 34, 41, 50,
36, 37, 40, 45, 52, 61, 72,
49, 53, 58, 65, 74, 85, 98
PROG
(PARI) a353386(nmax)={my(v=vectorsmall(2*nmax^2)); for(n=1, nmax,
for(k=0, n, my(s=n^2+k^2); if(!v[s], print1(s, ", "); v[s]++)); print())};
a353386(11)
CROSSREFS
Cf. A353387 (first term in lines), A001105 (last term in lines).
Sequence in context: A125022 A362295 A069011 * A101185 A045702 A005658
KEYWORD
nonn,tabf
AUTHOR
Hugo Pfoertner, Apr 15 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 20 21:47 EDT 2024. Contains 372720 sequences. (Running on oeis4.)