OFFSET
1,1
COMMENTS
A subsequence of A255346, see there for further information.
LINKS
T. Korimort, How many (x,y) satisfy x(x+1)|y(y+1),..., Number Theory group on LinkedIn.com, Feb. 2014.
EXAMPLE
a(1)=20 since 20*21=420 is divisible by 14*15=210 and none of {20, 21} is divisible by any of {14, 15}.
a(2)=35 since 35*36 = 1260 is divisible by 14*15 = 210 (and also by 20*21 = 420).
69 is not in the sequence although 69*70 = 4830 is divisible by 14*15 = 210, because 14 divides 70.
PROG
(PARI) is(n)={omega(n)>=2&&omega(n+1)>=2&&fordiv(n*(n+1), x, x>=n&&return; n*(n+1)%(x*(x+1))&&next; n%x||next; (n+1)%x||next; n%(x+1)||next; (n+1)%(x+1)&&return(1))}
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Feb 21 2015
STATUS
approved