Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A371968 Numbers k that are not the sum of distinct squares that do not divide k. 1
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 35, 36, 37, 39, 40, 42, 43, 44, 46, 47, 48, 50, 51, 54, 55, 56, 57, 59, 60, 63, 64, 66, 67, 68, 71, 72, 75, 76, 79, 80, 82, 84, 88, 91, 92, 95, 96, 99, 104, 107, 108, 111, 112, 120, 124, 127, 128, 132, 135, 140, 144, 147, 148, 156, 160, 168, 172, 176, 184, 188, 192, 200, 216, 224, 252, 256, 288, 300, 432 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers k such that A294266(k) = 0.
No other terms <= 100000.
LINKS
EXAMPLE
a(20) = 21 is a term because the only way to write 21 as the sum of distinct squares is 1^2 + 2^2 + 4^2, but 21 is divisible by 1^2.
MAPLE
filter:= proc(n) local P, k, x;
P:= 1;
for k from 2 to floor(sqrt(n)) do
if n mod k^2 = 0 then next fi;
P:= series(P*(1+x^(k^2)), x, n+1);
if coeff(P, x, n) > 0 then return false fi;
od;
true
end proc:
select(filter, [$1..500]);
CROSSREFS
Cf. A294266.
Sequence in context: A322847 A302492 A023754 * A335467 A374768 A256474
KEYWORD
nonn
AUTHOR
Robert Israel, Apr 15 2024
EXTENSIONS
More terms than usual in the DATA section, because these are probably all the terms.
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 August 18 19:11 EDT 2024. Contains 375273 sequences. (Running on oeis4.)