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!)
A372498 Complement of A372477. 2
8, 11, 14, 15, 18, 22, 23, 29, 32, 35, 38, 40, 41, 45, 47, 51, 53, 54, 55, 58, 59, 62, 66, 68, 69, 71, 74, 77, 78, 80, 83, 87, 88, 92, 95, 96, 98, 99, 105, 106, 107, 113, 115, 116, 118, 119, 123, 125, 126, 128, 130, 131, 134, 135, 137, 138, 141, 143, 149, 150, 153, 154, 155 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Sequence is complement of A372477.
This sequence consists of the positive integers that cannot be represented in the form (n*n + k*k - k*n, n*n + k*k - k*n + k - n), n > 0, 0 <= k < n.
LINKS
PROG
(Python)
import math
L=20 #tr are terms A372477 below L**2+1
numb=set()
Lmax=math.trunc((1+2*math.sqrt(3*L**2+1))/3)+1
tr=set()
tr.add(1)
for n in range(2, Lmax):
for k in range(0, n):
p1=n*n+k*k-k*n
p2=p1+k-n
if p1<=L**2:
tr.add(p1)
if p2<=L**2:
tr.add(p2)
for k in range (1, L**2):
numb.add(k)
print(sorted(numb-tr))
CROSSREFS
Complement of A372477.
Sequence in context: A308562 A254671 A265412 * A345488 A153039 A190208
KEYWORD
nonn
AUTHOR
Yury Kazakov, S. P. Obukhov, Sean Sun, and N. A. Shikhova, May 03 2024
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 July 14 05:06 EDT 2024. Contains 374291 sequences. (Running on oeis4.)