login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A320162 Irregular triangle read by rows: row n lists 0 <= k < p^2 such that p^2 divides A172236(k, p-Kronecker(k^2+4, p)), p = prime(n). 2

%I #29 Jul 06 2019 10:41:24

%S 0,0,4,5,0,7,18,0,12,20,24,25,29,37,0,5,18,19,24,43,78,97,102,103,116,

%T 0,2,14,45,70,82,87,99,124,155,167,0,24,38,40,63,83,103,105,184,186,

%U 206,226,249,251,265,0,31,37,63,79,100,137,144,150,180,181,211,217,224,261,282,298,324,330

%N Irregular triangle read by rows: row n lists 0 <= k < p^2 such that p^2 divides A172236(k, p-Kronecker(k^2+4, p)), p = prime(n).

%C p always divides A172236(k, p-Kronecker(k^2+4, p)), so it's interesting to see when p^2 also divides A172236(k, p-Kronecker(k^2+4, p)). If this holds, then p is called a k-Wall-Sun-Sun prime (and thus being a (k + s*p^2)-Wall-Sun-Sun prime for all integer s). Specially, there is no Wall-Sun-Sun prime below 10^14 implies that there is no 1 in the first pi(10^14) rows.

%C Note that A172236(0, m) is not defined, so here k must be understood as a remainder modulo p^2. because A172236(k+s*p^2, m) == A172236(k, m) (mod p^2).

%C Let p = prime(n). Every row contains 0. For n >= 2, if p == 3 (mod 4), then the n-th row contains p numbers, whose remainders modulo p form a permutation of {0, 1, 2, 3, ..., p - 2, p - 1}. If p == 1 (mod 4), then the n-th row contains p - 2 numbers, whose remainders modulo p form a permutation of {0, 1, 2, 3, ..., p - 2, p - 1} \ {+-2*((p - 1)/2)! mod p}.

%C Every row is antisymmetric, that is, k is a member iff p^2 - k is, k > 0. As a result, the sum of the n-th row is prime(n)^2*(prime(n) - 1)/2 if prime(n) == 3 (mod 4) and prime(n)^2*(prime(n) - 3)/2 if prime(n) == 1 (mod 4).

%C Equivalently, if p = prime(n) == 1 (mod 4), then row n lists 0 <= k < p^2 such that p^2 divides A172236(k, (p-Kronecker(k^2+4, p))/2). - _Jianing Song_, Jul 06 2019

%H Jianing Song, <a href="/A320162/b320162.txt">Table of n, a(n) for n = 1..29193</a> (primes below 600)

%H Jianing Song, <a href="/A320162/a320162.txt">Table of n, a(n) for n = 1..75966</a> (primes below 1000)

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Wall-Sun-Sun_prime">Wall-Sun-Sun prime</a>

%e Table starts

%e p = 2: 0,

%e p = 3: 0, 4, 5,

%e p = 5: 0, 7, 18,

%e p = 7: 0, 12, 20, 24, 25, 29, 37,

%e p = 11: 0, 5, 18, 19, 24, 43, 78, 97, 102, 103, 116,

%e p = 13: 0, 2, 14, 45, 70, 82, 87, 99, 124, 155, 167,

%e p = 17: 0, 24, 38, 40, 63, 83, 103, 105, 184, 186, 206, 226, 249, 251, 265,

%e p = 19: 0, 31, 37, 63, 79, 100, 137, 144, 150, 180, 181, 211, 217, 224, 261, 282, 298, 324, 330,

%e p = 23: 0, 21, 30, 38, 40, 70, 79, 89, 111, 149, 198, 248, 281, 331, 380, 418, 440, 450, 459, 489, 491, 499, 508,

%e p = 29: 0, 15, 40, 41, 49, 51, 56, 64, 74, 84, 126, 182, 204, 381, 460, 637, 659, 715, 757, 767, 777, 785, 790, 792, 800, 801, 826,

%e ...

%o (PARI)

%o B(k, p) = (([k, 1; 1, 0]^(p-kronecker(k^2+4, p)))[1, 2])%(p^2)

%o forprime(p=2, 50, for(k=0, p^2-1, if(!B(k, p), print1(k, ", "))); print)

%Y Cf. A143548, A172236, A320161 (discriminant k^2-4).

%Y Cf. A238736 (primes p such that 2 occurs in the corresponding row).

%K nonn,tabf

%O 1,3

%A _Jianing Song_, Oct 06 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 14:32 EDT 2024. Contains 371914 sequences. (Running on oeis4.)