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”).

A248473
Triangle of numbers b(i,j) = A(binomial(A(i), A(j))), where A = A007913, with the convention that A(0)=0.
2
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 0, 0, 1, 1, 5, 10, 10, 5, 1, 1, 6, 15, 5, 6, 6, 1, 1, 7, 21, 35, 7, 21, 7, 1, 1, 2, 1, 0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 10, 5, 30, 10, 7, 210, 30, 5, 10, 1, 1, 11, 55, 165, 11, 462, 462, 330, 55, 11, 11, 1
OFFSET
0,5
COMMENTS
By definition, all terms are squarefree (A005117).
EXAMPLE
For i=8, j=4, we have A(8)=2, A(4)=1, hence b(8,4) = A(binomial(2,1)) = 2.
Triangle begins
1
1 1
1 2 1
1 3 3 1
1 1 0 0 1
1 5 10 10 5 1
1 6 15 5 6 6 1
1 7 21 35 7 21 7 1
1 2 1 0 2 0 0 0 1
1 1 0 0 1 0 0 0 0 1
1 10 5 30 10 7 210 30 5 10 1
..........................................
MATHEMATICA
a7913[n_]:=a7913[n]=Times@@(#[[1]]^Mod[#[[2]], 2])&[Transpose[FactorInteger[n]]];
Flatten[Table[a7913[Binomial[a7913[m], a7913[k]]], {m, 0, 10}, {k, 0, m}]] (* Peter J. C. Moses, Oct 27 2014 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
STATUS
approved