A320161 Irregular triangle read by rows: row n lists 0 <= k < p^2 such that p^2 divides A316269(k, p-Kronecker(k^2-4, p)), p = prime(n).
0, 1, 3, 0, 1, 8, 0, 1, 24, 0, 1, 10, 39, 48, 0, 1, 27, 36, 37, 84, 85, 94, 120, 0, 1, 6, 29, 34, 61, 108, 135, 140, 163, 168, 0, 1, 25, 45, 56, 75, 82, 132, 157, 207, 214, 233, 244, 264, 288, 0, 1, 42, 43, 73, 88, 106, 120, 161, 200, 241, 255, 273, 288, 318, 319, 360
Offset: 1
Examples
Table starts p = 2: 0, 1, 3, p = 3: 0, 1, 8, p = 5: 0, 1, 24, p = 7: 0, 1, 10, 39, 48, p = 11: 0, 1, 27, 36, 37, 84, 85, 94, 120, p = 13: 0, 1, 6, 29, 34, 61, 108, 135, 140, 163, 168, p = 17: 0, 1, 25, 45, 56, 75, 82, 132, 157, 207, 214, 233, 244, 264, 288, p = 19: 0, 1, 42, 43, 73, 88, 106, 120, 161, 200, 241, 255, 273, 288, 318, 319, 360, p = 23: 0, 1, 12, 15, 60, 86, 105, 141, 142, 156, 223, 306, 373, 387, 388, 424, 443, 469, 514, 517, 528, p = 29: 0, 1, 42, 46, 80, 101, 107, 120, 226, 227, 327, 330, 358, 409, 432, 483, 511, 514, 614, 615, 721, 734, 740, 761, 795, 799, 840, ...
Links
- Jianing Song, Table of n, a(n) for n = 1..29083 (primes below 600)
- Jianing Song, Table of n, a(n) for n = 1..75796 (primes below 1000)
- Wikipedia, Wall-Sun-Sun prime
Crossrefs
Programs
-
PARI
B(k, p) = (([k, -1; 1, 0]^(p-kronecker(k^2-4,p)))[1,2])%(p^2) forprime(p=2, 50, for(k=0, p^2-1, if(!B(k, p), print1(k, ", ")));print)
Comments