|
|
A274240
|
|
Numbers n such that there is a smaller positive number j == n (mod 7) such that j*n is a square.
|
|
1
|
|
|
16, 25, 28, 32, 36, 48, 50, 56, 63, 64, 72, 75, 80, 81, 84, 96, 100, 108, 112, 121, 125, 126, 128, 140, 144, 150, 160, 162, 168, 169, 175, 176, 180, 189, 192, 196, 200, 208, 216, 224, 225, 240, 242, 243, 250, 252, 256, 272, 275, 280, 288, 289, 300, 304, 308
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
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.
|
|
LINKS
|
Table of n, a(n) for n=1..55.
|
|
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
|
Cf. A046790, A274141, A274188.
Sequence in context: A339624 A111026 A124186 * A176512 A001033 A100647
Adjacent sequences: A274237 A274238 A274239 * A274241 A274242 A274243
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Vladimir Shevelev, Jun 15 2016
|
|
EXTENSIONS
|
More terms from Felix Fröhlich, Jun 15 2016
|
|
STATUS
|
approved
|
|
|
|