login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A098793
Triangle read by rows, 1<=k<=n: T(n,k) = smallest number having exactly as many divisors as n and k together.
0
2, 4, 6, 4, 6, 6, 6, 16, 16, 12, 4, 6, 6, 16, 6, 16, 12, 12, 64, 12, 24, 4, 6, 6, 16, 6, 12, 6, 16, 12, 12, 64, 12, 24, 12, 24, 6, 16, 16, 12, 16, 64, 16, 64, 12, 16, 12, 12, 64, 12, 24, 12, 24, 64, 24, 4, 6, 6, 16, 6, 12, 6, 12, 16, 12, 6, 64, 24, 24, 36, 24, 48, 24, 48, 36, 48, 24, 60, 4
OFFSET
1,1
FORMULA
T(n,k) = A005179(A000005(n)+A000005(k)).
EXAMPLE
Triangle begins:
2
4 6
4 6 6
6 16 16 12
4 6 6 16 6
...
MATHEMATICA
A005179 = Cases[Import["https://oeis.org/A005179/b005179.txt", "Table"], {_, _}][[All, 2]];
T[n_, k_] := A005179[[DivisorSigma[0, n] + DivisorSigma[0, k]]];
Table[T[n, k], {n, 1, 12}, {k, 1, n}] // Flatten (* Jean-François Alcover, Sep 15 2021 *)
PROG
(PARI) T(n, k) = my(x=numdiv(n)+numdiv(k), y=1); while(numdiv(y)!= x, y++); y; \\ Michel Marcus, Sep 15 2021
CROSSREFS
Sequence in context: A182043 A337937 A138125 * A083220 A085896 A351491
KEYWORD
nonn,tabl
AUTHOR
Reinhard Zumkeller, Oct 31 2004
STATUS
approved