This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A239633 #17 Jan 25 2016 14:21:42 %S A239633 1,1,1,1,31,1,1,242,242,1,1,992,7744,992,1,1,3124,99968,99968,3124,1, %T A239633 1,7502,756008,3099008,756008,7502,1,1,16806,4067052,52501944, %U A239633 52501944,4067052,16806,1,1,31744,17209344,533489664,1680062208,533489664,17209344,31744 %N A239633 Triangle read by rows: T(n,k) = A059384(n)/(A059384(k)*A059384(n-k)). %C A239633 We assume that A059384(0)=1 since it would be the empty product. %C A239633 These are the generalized binomial coefficients associated with the Jordan totient function J_5 given in A059378. %C A239633 Another name might be the 5-totienomial coefficients. %H A239633 Tom Edgar, <a href="http://www.emis.de/journals/INTEGERS/papers/o62/o62.Abstract.html">Totienomial Coefficients</a>, INTEGERS, 14 (2014), #A62. %H A239633 Tom Edgar and Michael Z. Spivey, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL19/Edgar/edgar3.html">Multiplicative functions, generalized binomial coefficients, and generalized Catalan numbers</a>, Journal of Integer Sequences, Vol. 19 (2016), Article 16.1.6. %H A239633 Donald E. Knuth and Herbert S. Wilf, <a href="http://www.math.upenn.edu/~wilf/website/dm36.pdf">The power of a prime that divides a generalized binomial coefficient</a>, J. Reine Angew. Math., 396:212-219, 1989. %F A239633 T(n,k) = A059384(n)/(A059384(k)* A059384(n-k)). %F A239633 T(n,k) = prod_{i=1..n} A059378(i)/(prod_{i=1..k} A059378(i)*prod_{i=1..n-k} A059378(i)). %F A239633 T(n,k) = A059378(n)/n*(k/A059378(k)*T(n-1,k-1)+(n-k)/A059378(n-k)*T(n-1,k)). %e A239633 The first five terms in the fifth Jordan totient function are 1,31,242,992,3124 and so T(4,2) = 992*242*31*1/((31*1)*(31*1))=7744 and T(5,3) = 3124*992*242*31*1/((242*31*1)*(31*1))=99968. %e A239633 The triangle begins %e A239633 1 %e A239633 1 1 %e A239633 1 31 1 %e A239633 1 242 242 1 %e A239633 1 992 7744 992 1 %e A239633 1 3124 99968 99968 3124 1 %o A239633 (Sage) %o A239633 q=100 #change q for more rows %o A239633 P=[0]+[i^5*prod([1-1/p^5 for p in prime_divisors(i)]) for i in [1..q]] %o A239633 [[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. %Y A239633 Cf. A059378, A059384, A238453, A238688, A238743, A238754. %K A239633 nonn,tabl %O A239633 0,5 %A A239633 _Tom Edgar_, Mar 22 2014