proposed
approved
proposed
approved
editing
proposed
Antti Karttunen, <a href="/A094497/b094497.txt">Table of n, a(n) for n = 0..10439; the first 144 rows of triangle</a>
<a href="/index/Pas#Pascal">Index entries for triangles and arrays related to Pascal's triangle</a>
aTriangular table A(n,j) = C(n,j) - C(n,j) mod n^3, difference of binomial coefficients coefficient and its residue mod n^3, the cube of n, read by rows.
Antti Karttunen, <a href="/A094497/b094497.txt">Table of n, a(n) for n = 0..10439</a>
approved
editing
_Labos E. (labos(AT)ana.sote.hu), Elemer_, Jun 02 2004
proposed
approved
editing
proposed
a[(n],j) = C[(n,j]) -Mod[ C[(n,j],) mod n^3], , difference of binomial coefficients and its residue mod n^3, the cube of n, read by rows.
a[(0]) = 1 by convention.
Out of a[(1])=1 and a[(2])=1, the first deviation from A007318 is at a[(111] ) because C[(14,6]) = 3003, Mod[3003, mod 2744] = 259, a[(111]) = 2744.
approved
editing
Out of a[1]=1 and a[2]=1, the first deviation from A007318 is at a[111], because C[14,6]=3003, Mod[3003,2744]=259, a[111]=2744.
easy,nonn,tabl,new
Flatten[Table[Table[Binomial[n, j]-Mod[Binomial[n, j], n^3], {j, 0, n}], {n, 1, 14}], 1]
easy,nonn,tabl,new