A320562
Irregular table read by rows: T(n,k) is the smallest m such that m^m == 2*k + 1 (mod 2^n), 0 <= k <= 2^(n-1) - 1.
Original entry on oeis.org
1, 1, 3, 1, 3, 5, 7, 1, 11, 5, 7, 9, 3, 13, 15, 1, 27, 21, 23, 9, 19, 29, 15, 17, 11, 5, 7, 25, 3, 13, 31, 1, 27, 21, 55, 9, 19, 29, 47, 17, 11, 37, 39, 25, 3, 45, 31, 33, 59, 53, 23, 41, 51, 61, 15, 49, 43, 5, 7, 57, 35, 13, 63
Offset: 1
Table starts
1,
1, 3,
1, 3, 5, 7,
1, 11, 5, 7, 9, 3, 13, 15,
1, 27, 21, 23, 9, 19, 29, 15, 17, 11, 5, 7, 25, 3, 13, 31,
1, 27, 21, 55, 9, 19, 29, 47, 17, 11, 37, 39, 25, 3, 45, 31, 33, 59, 53, 23, 41, 51, 61, 15, 49, 43, 5, 7, 57, 35, 13, 63,
...
{x^x} and its inverse:
A320561 & this sequence.
-
Table[Block[{m = 1}, While[PowerMod[m, m, 2^n] != Mod[2 k + 1, 2^n], m++]; m], {n, 6}, {k, 0, 2^(n - 1) - 1}] // Flatten (* Michael De Vlieger, Oct 22 2018 *)
-
T(n,k) = my(m=1); while(Mod(m, 2^n)^m!=2*k+1, m+=2); m
tabf(nn) = for(n=1, nn, for(k=0, 2^(n-1)-1, print1(T(n, k), ", ")); print);
A321901
Irregular table read by rows: T(n,k) = (2*k+1)^(-(2*k+1)) mod 2^n, 0 <= k <= 2^(n-1) - 1.
Original entry on oeis.org
1, 1, 3, 1, 3, 5, 7, 1, 3, 13, 7, 9, 11, 5, 15, 1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31, 1, 19, 29, 7, 57, 27, 21, 15, 49, 35, 13, 23, 41, 43, 5, 31, 33, 51, 61, 39, 25, 59, 53, 47, 17, 3, 45, 55, 9, 11, 37, 63
Offset: 1
Table starts
1,
1, 3,
1, 3, 5, 7,
1, 3, 13, 7, 9, 11, 5, 15,
1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31,
1, 19, 29, 7, 57, 27, 21, 15, 49, 35, 13, 23, 41, 43, 5, 31, 33, 51, 61, 39, 25, 59, 53, 47, 17, 3, 45, 55, 9, 11, 37, 63,
...
{x^(-x)} and its inverse: this sequence &
A321904.
-
T(n, k) = lift(Mod(2*k+1, 2^n)^(-(2*k+1)))
tabf(nn) = for(n=1, nn, for(k=0, 2^(n-1)-1, print1(T(n, k), ", ")); print)
A321902
Irregular table read by rows: T(n,k) = (2*k+1)^(1/(2*k+1)) mod 2^n, 0 <= k <= 2^(n-1) - 1.
Original entry on oeis.org
1, 1, 3, 1, 3, 5, 7, 1, 11, 5, 7, 9, 3, 13, 15, 1, 27, 21, 23, 9, 19, 29, 15, 17, 11, 5, 7, 25, 3, 13, 31, 1, 59, 21, 55, 9, 51, 29, 47, 17, 43, 37, 39, 25, 35, 45, 31, 33, 27, 53, 23, 41, 19, 61, 15, 49, 11, 5, 7, 57, 3, 13, 63
Offset: 1
Table starts
1,
1, 3,
1, 3, 5, 7,
1, 11, 5, 7, 9, 3, 13, 15,
1, 27, 21, 23, 9, 19, 29, 15, 17, 11, 5, 7, 25, 3, 13, 31,
1, 59, 21, 55, 9, 51, 29, 47, 17, 43, 37, 39, 25, 35, 45, 31, 33, 27, 53, 23, 41, 19, 61, 15, 49, 11, 5, 7, 57, 3, 13, 63,
...
{x^(1/x)} and its inverse: this sequence &
A321905.
-
T(n, k) = my(m=1); while(Mod(m, 2^n)^(2*k+1)!=2*k+1, m+=2); m
tabf(nn) = for(n=1, nn, for(k=0, 2^(n-1)-1, print1(T(n, k), ", ")); print)
A321903
Irregular table read by rows: T(n,k) = (2*k+1)^(-1/(2*k+1)) mod 2^n, 0 <= k <= 2^(n-1) - 1.
Original entry on oeis.org
1, 1, 3, 1, 3, 5, 7, 1, 3, 13, 7, 9, 11, 5, 15, 1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31, 1, 51, 61, 7, 57, 59, 53, 15, 49, 3, 45, 23, 41, 11, 37, 31, 33, 19, 29, 39, 25, 27, 21, 47, 17, 35, 13, 55, 9, 43, 5, 63
Offset: 1
Table starts
1,
1, 3,
1, 3, 5, 7,
1, 3, 13, 7, 9, 11, 5, 15,
1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31,
1, 51, 61, 7, 57, 59, 53, 15, 49, 3, 45, 23, 41, 11, 37, 31, 33, 19, 29, 39, 25, 27, 21, 47, 17, 35, 13, 55, 9, 43, 5, 63,
...
{x^(-1/x)} and its inverse: this sequence &
A321906.
-
T(n, k) = my(m=1); while(Mod(m, 2^n)^(-(2*k+1))!=2*k+1, m+=2); m
tabf(nn) = for(n=1, nn, for(k=0, 2^(n-1)-1, print1(T(n, k), ", ")); print)
A321904
Irregular table read by rows: T(n,k) is the smallest m such that m^(-m) == 2*k + 1 (mod 2^n), 0 <= k <= 2^(n-1) - 1.
Original entry on oeis.org
1, 1, 3, 1, 3, 5, 7, 1, 3, 13, 7, 9, 11, 5, 15, 1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31, 1, 51, 29, 7, 57, 59, 21, 15, 49, 3, 13, 23, 41, 11, 5, 31, 33, 19, 61, 39, 25, 27, 53, 47, 17, 35, 45, 55, 9, 43, 37, 63
Offset: 1
Table starts
1,
1, 3,
1, 3, 5, 7,
1, 3, 13, 7, 9, 11, 5, 15,
1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31,
1, 51, 29, 7, 57, 59, 21, 15, 49, 3, 13, 23, 41, 11, 5, 31, 33, 19, 61, 39, 25, 27, 53, 47, 17, 35, 45, 55, 9, 43, 37, 63,
...
{x^(-x)} and its inverse:
A321901 & this sequence.
-
T(n, k) = my(m=1); while(Mod(m, 2^n)^(-m)!=2*k+1, m+=2); m
tabf(nn) = for(n=1, nn, for(k=0, 2^(n-1)-1, print1(T(n, k), ", ")); print)
A321905
Irregular table read by rows: T(n,k) is the smallest m such that m^(1/m) == 2*k + 1 (mod 2^n), 0 <= k <= 2^(n-1) - 1.
Original entry on oeis.org
1, 1, 3, 1, 3, 5, 7, 1, 11, 5, 7, 9, 3, 13, 15, 1, 27, 21, 23, 9, 19, 29, 15, 17, 11, 5, 7, 25, 3, 13, 31, 1, 59, 53, 55, 9, 51, 61, 47, 17, 43, 5, 39, 25, 35, 13, 31, 33, 27, 21, 23, 41, 19, 29, 15, 49, 11, 37, 7, 57, 3, 45, 63
Offset: 1
Table starts
1,
1, 3,
1, 3, 5, 7,
1, 11, 5, 7, 9, 3, 13, 15,
1, 27, 21, 23, 9, 19, 29, 15, 17, 11, 5, 7, 25, 3, 13, 31,
1, 59, 53, 55, 9, 51, 61, 47, 17, 43, 5, 39, 25, 35, 13, 31, 33, 27, 21, 23, 41, 19, 29, 15, 49, 11, 37, 7, 57, 3, 45, 63,
...
{x^(1/x)} and its inverse:
A321902 & this sequence.
-
T(n, k) = my(m=1); while(Mod(2*k+1, 2^n)^m!=m, m+=2); m
tabf(nn) = for(n=1, nn, for(k=0, 2^(n-1)-1, print1(T(n, k), ", ")); print)
A321906
Irregular table read by rows: T(n,k) is the smallest m such that m^(-1/m) == 2*k + 1 (mod 2^n), 0 <= k <= 2^(n-1) - 1.
Original entry on oeis.org
1, 1, 3, 1, 3, 5, 7, 1, 3, 13, 7, 9, 11, 5, 15, 1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31, 1, 19, 61, 7, 57, 27, 53, 15, 49, 35, 45, 23, 41, 43, 37, 31, 33, 51, 29, 39, 25, 59, 21, 47, 17, 3, 13, 55, 9, 11, 5, 63
Offset: 1
Table starts
1,
1, 3,
1, 3, 5, 7,
1, 3, 13, 7, 9, 11, 5, 15,
1, 19, 29, 7, 25, 27, 21, 15, 17, 3, 13, 23, 9, 11, 5, 31,
1, 19, 61, 7, 57, 27, 53, 15, 49, 35, 45, 23, 41, 43, 37, 31, 33, 51, 29, 39, 25, 59, 21, 47, 17, 3, 13, 55, 9, 11, 5, 63,
...
{x^(-1/x)} and its inverse:
A321903 & this sequence.
-
T(n, k) = my(m=1); while(Mod(2*k+1, 2^n)^(-m)!=m, m+=2); m
tabf(nn) = for(n=1, nn, for(k=0, 2^(n-1)-1, print1(T(n, k), ", ")); print)
Showing 1-7 of 7 results.
Comments