OFFSET
0,5
COMMENTS
LINKS
Tom Edgar, Totienomial Coefficients, INTEGERS, 14 (2014), #A62.
Tom Edgar and Michael Z. Spivey, Multiplicative functions, generalized binomial coefficients, and generalized Catalan numbers, Journal of Integer Sequences, Vol. 19 (2016), Article 16.1.6.
Donald E. Knuth and Herbert S. Wilf, The power of a prime that divides a generalized binomial coefficient, J. Reine Angew. Math., 396:212-219, 1989.
FORMULA
EXAMPLE
The first five terms in the third Jordan totient function are 1,7,26,56,124 and so T(4,2) = 56*26*7*1/((7*1)*(7*1))=208 and T(5,3) = 124*56*26*7*1/((26*7*1)*(7*1))=992.
The triangle begins
1
1 1
1 7 1
1 26 26 1
1 56 208 56 1
1 124 992 992 124 1
1 182 3224 6944 3224 182 1
PROG
(Sage)
q=100 #change q for more rows
P=[0]+[i^3*prod([1-1/p^3 for p in prime_divisors(i)]) for i in [1..q]]
[[prod(P[1:n+1])/(prod(P[1:k+1])*prod(P[1:(n-k)+1])) for k in [0..n]] for n in [0..len(P)-1]] #generates the triangle up to q rows.
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Tom Edgar, Mar 04 2014
STATUS
approved