[go: up one dir, main page]

login
Revision History for A339539 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
T(n, k) is the sum of the residues b^(p-1)-1 (mod p^2) for b=2..k, k > 1, where p = prime(n). Square array, read by downward antidiagonals.
(history; published version)
#13 by Peter Luschny at Sun Oct 20 11:40:40 EDT 2024
STATUS

reviewed

approved

#12 by Joerg Arndt at Sun Oct 20 08:49:21 EDT 2024
STATUS

proposed

reviewed

#11 by Andrey Zabolotskiy at Sun Oct 20 07:14:15 EDT 2024
STATUS

editing

proposed

#10 by Andrey Zabolotskiy at Sun Oct 20 07:14:13 EDT 2024
NAME

T(n, k) is the sum of the residues b^(p-1)-1 (mod p^2) for b=2..k, k > 1, where p = prime(n). Square array, read by downward antidiagonals, downward.

STATUS

approved

editing

#9 by N. J. A. Sloane at Sat Dec 12 06:18:18 EST 2020
STATUS

proposed

approved

#8 by Felix Fröhlich at Wed Dec 09 03:37:12 EST 2020
STATUS

editing

proposed

#7 by Felix Fröhlich at Wed Dec 09 03:37:03 EST 2020
PROG

array(rows, cols) = for(x=1, rows, for(y=2, cols, +1, print1(t(x, y), ", ")); print(""))

array(11, 12) \\ Print initial 11 rows and 12 columns of array

STATUS

proposed

editing

#6 by Felix Fröhlich at Tue Dec 08 10:38:11 EST 2020
STATUS

editing

proposed

#5 by Felix Fröhlich at Tue Dec 08 10:35:45 EST 2020
NAME

AT(n, k) is the sum of the residues b^(p-1)-1 (mod p^2) for b=2..k, k > 1, where p = prime(n). Square array, read by antidiagonals, downward.

COMMENTS

AT(n, k) = AT(n, k-1) if p is a base-k Wieferich prime.

A necessary condition for the failure of the first case of Fermat's last theorem for a prime p with prime index i is AT(i, k) = 0 for k = 2..113 (cf. Suzuki, 1994).

FORMULA

AT(n, 2) = A196202(n)-1.

PROG

(PARI) at(n, k) = my(p=prime(n)); sum(b=2, k, lift(Mod(b, p^2)^(p-1)-1))

array(rows, cols) = for(x=1, rows, for(y=2, cols, print1(at(x, y), ", ")); print(""))

STATUS

proposed

editing

Discussion
Tue Dec 08
10:37
Felix Fröhlich: Done, though I always thought T should be used for triangles and irregular arrays and A for rectangular arrays.
#4 by Felix Fröhlich at Tue Dec 08 10:11:37 EST 2020
STATUS

editing

proposed

Discussion
Tue Dec 08
10:32
Omar E. Pol: Could you please replace A(n, k) with T(n,k)?