OFFSET
1,1
COMMENTS
Or numbers n >= 16 having a divisor t^2 > 1, where t=k/m, 1 <= m < k, such that n == n/t^2 (mod 7).
Or positive numbers n such that if n == 0 (mod 7), then n is divisible by 7^3 or by the square of some other prime; otherwise n is divisible by k^2, such that there is a k_1, 0 < k_1 < k such that k_1^2 == k^2 (mod 7) (or, according to the comment in A130290, n is divisible by some k^2 >= 16).
For a generalization, see the seqfan list from Jun 13 (correction Jun 14) 2016.
EXAMPLE
25 is a member, since 4 == 25 (mod 7) and 4*25 is a square.
32 is a member, since 18 == 32 (mod 7) and 18*32 is a square.
PROG
(PARI) is(n) = for(j=1, n-1, if(Mod(j, 7)==n && issquare(j*n), return(1))); return(0) \\ Felix Fröhlich, Jun 15 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Jun 15 2016
EXTENSIONS
More terms from Felix Fröhlich, Jun 15 2016
STATUS
approved