OFFSET
2,1
EXAMPLE
The prime numbers 7 and 11 are consecutive primes. In base 10, the sum of the digits of 7 and 11 are respectively 7 and 2. Since 7 is greater than or equal to 2, and there are no smaller numbers with this property, we have T(10,2) = 7.
The prime numbers 11, 13, 17 are consecutive primes. In base 2, the sum of the digits of 11 = 1011_2 and 13 = 1101_2 is 3 and the sum of digits of 17 = 10001_2 is 2. Since 3 >= 3 >= 2, and there are no smaller numbers with this property, we have T(2,3) = 11.
The top left corner of the array begins at T(2,1):
2 3 11 7 647 823 ...
3 2 7 5 239 233 ...
2 3 11 79 647 40427 ...
2 3 23 19 463 11617 ...
2 5 29 137 11003 46187 ...
... ... ... ... ... ... ...
CROSSREFS
KEYWORD
AUTHOR
Jean-Marc Rebert, Oct 08 2024
STATUS
approved