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!)
A351061 Smallest positive integer whose square can be written as the sum of n positive perfect squares. 1

%I #16 May 14 2022 11:22:31

%S 1,5,3,2,4,3,4,4,3,4,5,6,4,5,6,4,5,6,5,6,6,5,7,6,5,7,6,6,7,6,7,7,6,7,

%T 7,6,7,7,8,7,7,8,7,8,8,7,8,8,7,8,9,8,8,9,8,8,9,8,9,9,8,9,9,8,9,9,9,10,

%U 9,9,10,9,9,10,9,10,10,9,10,10,9,10,10,10

%N Smallest positive integer whose square can be written as the sum of n positive perfect squares.

%C Shortest possible integer length of the diagonal of an n-dimensional hyperrectangle where each edge has a positive integer length.

%H Alois P. Heinz, <a href="/A351061/b351061.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = sqrt(A215539(n)). - _Jinyuan Wang_, Jan 30 2022

%e a(1) = 1 because 1^2 = 1^2.

%e a(2) = 5 because 5^2 = 3^2 + 4^2.

%e a(3) = 3 because 3^2 = 1^2 + 2*(2^2).

%e a(4) = 2 because 2^2 = 4*(1^2).

%e a(5) = 4 because 4^2 = 3*(1^2) + 2^2 + 3^2.

%e a(6) = 3 because 3^2 = 5*(1^2) + 2^2.

%e a(7) = 4 because 4^2 = 4*(1^2) + 3*(2^2).

%p b:= proc(n, i, t) option remember; n>=t and (n=t or

%p (i>0 and (b(n, i-1, t) or i^2<=n and b(n-i^2, i, t-1))))

%p end:

%p a:= proc(n) option remember; local k;

%p for k while not b(k^2, k, n) do od; k

%p end:

%p seq(a(n), n=1..100); # _Alois P. Heinz_, Jan 31 2022

%t b[n_, i_, t_] := b[n, i, t] = n >= t && (n == t ||

%t (i > 0 && (b[n, i - 1, t] || i^2 <= n && b[n - i^2, i, t - 1])));

%t a[n_] := a[n] = Module[{k}, For[k = 1, !b[k^2, k, n], k++]; k];

%t Table[a[n], {n, 1, 100}] (* _Jean-François Alcover_, May 14 2022, after _Alois P. Heinz_ *)

%Y Cf. A215539.

%K nonn

%O 1,2

%A _Lee A. Newberg_, Jan 30 2022

%E More terms from _Jinyuan Wang_, Jan 30 2022

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 June 21 08:32 EDT 2024. Contains 373543 sequences. (Running on oeis4.)