OFFSET
1,2
COMMENTS
k = 36*j^2 is a term for j > 0.
Other infinite families of terms are 36*j^2-29*j+5, 36*j^2-21*j+3, 36*j^2-12*j, 36*j^2-8*j,36*j^2+9*j,36*j^2+13*j+1,36*j^2+22*j+2, and 36*j^2+30*j+6. These cover all terms <= 4676406 except 35. - Robert Israel, Jan 24 2020
LINKS
Robert Israel, Table of n, a(n) for n = 1..3200
MAPLE
filter:= n -> n mod (floor(sqrt(n))+floor(sqrt(n/4))) = 0:
select(filter, [$1..10000]); # Robert Israel, Jan 24 2020
MATHEMATICA
Select[Range[1296], Mod[#, Floor@ Sqrt@ # + Floor@ Sqrt[#/4]] == 0 &] (* Giovanni Resta, Apr 05 2019 *)
PROG
(PARI) is(n) = n%(floor(sqrt(n)) + floor(sqrt(n/4))) == 0;
CROSSREFS
KEYWORD
nonn
AUTHOR
Jinyuan Wang, Mar 09 2019
STATUS
approved