OFFSET
1,1
COMMENTS
These numbers provide solutions to the problem of finding (x,y) such that x(x+1) | y(y+1) but none of x or x+1 divides any of y or y+1. Namely, these solutions are given for (x,y) being members of the sequence such that x(x+1) divides y(y+1), the smallest of which are (14,20), (14,35), (20,35), ... but, e.g., (14,69) is excluded since 14 | 70.
Contains A074851 as a subsequence.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
T. Korimort, How many (x,y) satisfy x(x+1)|y(y+1),..., Number Theory group on LinkedIn.com, Feb. 2014.
MATHEMATICA
SequencePosition[Table[If[PrimeNu[n]>1, 1, 0], {n, 200}], {1, 1}][[;; , 1]] (* Harvey P. Dale, Jul 30 2025 *)
PROG
(PARI) for(n=2, 199, omega(n)>=2||(n++&&next); omega(n-1)>=2&&print1((n-1)", "))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, Feb 21 2015
STATUS
approved
