cp's OEIS Frontend

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.

A132896 Triangle read by rows: T(n,k)=number of prime divisors of C(n,k), counted with multiplicity (0<=k<=n).

This page as a plain text file.
%I A132896 #7 Nov 04 2020 05:23:39
%S A132896 0,0,0,0,1,0,0,1,1,0,0,2,2,2,0,0,1,2,2,1,0,0,2,2,3,2,2,0,0,1,2,2,2,2,
%T A132896 1,0,0,3,3,4,3,4,3,3,0,0,2,4,4,4,4,4,4,2,0,0,2,3,5,4,5,4,5,3,2,0,0,1,
%U A132896 2,3,4,4,4,4,3,2,1,0,0,3,3,4,4,6,5,6,4,4,3,3,0
%N A132896 Triangle read by rows: T(n,k)=number of prime divisors of C(n,k), counted with multiplicity (0<=k<=n).
%H A132896 T. D. Noe, <a href="/A132896/b132896.txt">Rows n=0..100 of triangle, flattened</a>
%F A132896 T(n, k) = A001222(A007318(n, k)). - _Michel Marcus_, Nov 04 2020
%e A132896 T(8,3)=4 because C(8,3)=56=2*2*2*7.
%e A132896 Triangle begins:
%e A132896 0;
%e A132896 0,0;
%e A132896 0,1,0;
%e A132896 0,1,1,0;
%e A132896 0,2,2,2,0;
%e A132896 0,1,2,2,1,0;
%p A132896 with(numtheory): T:=proc(n,k) if k <= n then bigomega(binomial(n,k)) else x end if end proc: for n from 0 to 12 do seq(T(n,k),k=0..n) end do; # yields sequence in triangular form
%Y A132896 Cf. A048571, which counts only distinct factors.
%Y A132896 Cf. A001222, A007318.
%K A132896 nonn,tabl
%O A132896 0,12
%A A132896 _Emeric Deutsch_, Oct 16 2007