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!)
A027564 Numbers not of form abcd + abce + abde + acde + bcde for 1 <= a <= b <= c <= d <= e. 4
1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 18, 19, 20, 22, 24, 26, 27, 31, 32, 34, 35, 36, 38, 39, 42, 46, 47, 50, 54, 55, 59, 60, 62, 66, 67, 70, 71, 75, 78, 84, 87, 90, 92, 94, 98, 99, 102, 104, 106, 110, 111, 115, 116, 119, 122, 126, 127, 130, 131, 132, 138 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
N := 1000: # for all terms <= N
V:= Vector(N):
for a from 1 to floor((N/5)^(1/4)) do
for b from a while 4*a*b^3+b^4<= N do
for c from b while 3*a*b*c^2 + (a+b)*c^3 <= N do
for d from c while 2*a*b*c*d + (b*c+a*c+a*b)*d^2 <= N do
for e from d do
r:= a*b*c*d+a*b*c*e+a*b*d*e+a*c*d*e+b*c*d*e;
if r > N then break fi;
V[r]:= 1;
od od od od od:
select(t -> V[t]=0, [$1..N]); # Robert Israel, Nov 04 2018
CROSSREFS
Sequence in context: A029597 A188262 A099619 * A284941 A354767 A351714
KEYWORD
nonn,fini
AUTHOR
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)