OFFSET
0,13
COMMENTS
If a term T(n, k) > 1 is replaced by 1 the triangle reduces to the divisibility triangle A113704. In addition to divisibility, T(n, k) indicates the order of divisibility. For n, k >= 2 this is defined as the multiplicity of a divisor, i.e., the exponent of the highest order of k that divides n. For a prime number p T(n, p) is called p-adic valuation or p-adic order of n. See also the comments in A382883.
FORMULA
EXAMPLE
Triangle starts:
[0] 1;
[1] 0, 1;
[2] 0, 1, 1;
[3] 0, 1, 0, 1;
[4] 0, 1, 2, 0, 1;
[5] 0, 1, 0, 0, 0, 1;
[6] 0, 1, 1, 1, 0, 0, 1;
[7] 0, 1, 0, 0, 0, 0, 0, 1;
[8] 0, 1, 3, 0, 1, 0, 0, 0, 1;
[9] 0, 1, 0, 2, 0, 0, 0, 0, 0, 1;
MAPLE
MATHEMATICA
T[n_, 0] := T[n, 0] = Boole[n == 0]; T[n_, 1] := T[n, 1] = 1; T[n_, k_] := T[n, k] = IntegerExponent[n, k]; Table[T[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* Amiram Eldar, Apr 29 2025 *)
PROG
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Apr 09 2025
STATUS
approved
