OFFSET
1,1
COMMENTS
Inspired by Project Euler, Problem 141 (see link).
The terms are necessary oblong numbers >= 6.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..200
EXAMPLE
For 110:
110 | 18 110 | 6 110 | 100
----- ------ ---------
2 | 6 , 2 | 18 , 10 | 1
For 132, see A335065.
For 1332:
1332 | 121 1332 | 11 1332 | 1296
------ ------- -------
1 | 11 , 1 | 121 , 36 | 1 .
MATHEMATICA
Select[(#^2 + #) & /@ Range[2000], (n = #; AnyTrue[ Range[1 + Sqrt@ n], #^2 == Mod[n, #] Floor[n/#] &]) &] (* Giovanni Resta, Jun 03 2020 *)
PROG
(PARI) isob(n) = my(m=sqrtint(n)); m*(m+1)==n; \\ A002378
isgd(n) = {for(d=1, n, if((n\d)*(n%d)==d^2, return(1))); return(0)}; \\ A127629
isok(n) = isob(n) && isgd(n); \\ Michel Marcus, May 30 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Bernard Schott, May 30 2020
EXTENSIONS
More terms from Michel Marcus, May 30 2020
a(18)-a(26) from Jinyuan Wang, May 30 2020
Terms a(27) and beyond from Giovanni Resta, Jun 03 2020
STATUS
approved