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!)
A356209 a(n) is the position of the latest occurrence of n in A133388. 2
2, 8, 18, 32, 41, 72, 98, 128, 162, 181, 242, 288, 313, 392, 421, 512, 514, 648, 722, 761, 882, 968, 1058, 1152, 1201, 1301, 1458, 1568, 1466, 1741, 1922, 2048, 2178, 2056, 2381, 2592, 2594, 2888, 2817, 3121, 3202, 3528, 3698, 3872, 3789, 4232, 4418, 4608, 4802, 4804, 5101 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(k) = 2*k^2 for k not in A009003.
PROG
(Python)
from sympy.solvers.diophantine.diophantine import diop_DN
def A356209(n):
for m in range(n**2<<1, 0, -1):
if n==max((a for a, b in diop_DN(-1, m)), default=0):
return m # Chai Wah Wu, Sep 08 2022
CROSSREFS
Sequence in context: A063581 A293296 A055044 * A357851 A067051 A074629
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, Sep 07 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 September 23 14:02 EDT 2023. Contains 365551 sequences. (Running on oeis4.)