A363335 Irregular table read by rows: T(n,k) is the smallest m that has 2*n divisors and is at the beginning of a run of exactly k consecutive integers whose number of divisors increases by 2, or -1 if no such m exists.
2, 5, 61, 421, 1524085621, 10, 27, 187, 2545622, 12, 153, 35557, 363121, 223577456873, 44753756873
Offset: 1
Examples
T(2,3) is the smallest m such that tau(m+j) = 2*(2+j) for each j in 0..2 but not for j = -1 or j = 3; i.e., tau(m) = 4, tau(m+1) = 6, and tau(m+2) = 8, but tau(m-1) != 2 and tau(m+3) != 10. The smallest such m is 187: m = 187 = 11*17 (which has 4 divisors), m+1 = 188 = 2^2*47 (which has 6 divisors), and m+2 = 189 = 3^3*7 (which has 8 divisors), but m-1 = 186 = 2*3*31 (which has 8 divisors, not 2), and m+3 = 190 = 2*5*19 (which has 8 divisors, not 10). The first several rows of the table are as follows: Row n=1: 2, 5, 61, 421, 1524085621; (A294528) Row n=2: 10, 27, 187, 2545622; Row n=3: 12, 153, 35557, 363121, 223577456873, 44753756873, ... Row n=4: 24, 890, 1615, 795056874, 718511874, ... Row n=5: 48, 1424, 84281875, 1578123, ... Row n=6: 60, 1215, 53216, ... Row n=7: 192, 2624, ... Row n=8: 120, 6699, 31310, ... Row n=9: 180, 16928, ... ...
Formula
T(n,k) = min_{j : A000005(m+j) = 2*(n+j) for j = 0..k-1 but not for j = -1 or j = k}.
Comments