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

A061859
Differences between the ordinary multiplication table A004247 and Xmult table A048720, computed for {3..n} * {3..n}.
1
4, 0, 0, 0, 0, 0, 8, 0, 0, 8, 12, 0, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 8, 0, 0, 0, 0, 0, 24, 24, 0, 0, 0, 4, 0, 0, 0, 28, 0, 0, 0, 4, 16, 0, 16, 0, 0, 0, 0, 16, 0, 16, 16, 0, 16, 0, 0, 0, 0, 0, 16, 0, 16, 24, 0, 0, 8, 16, 0, 0, 16, 8, 0, 0, 24, 28, 0, 8, 32, 28, 0, 16, 0, 28, 32, 8, 0, 28
OFFSET
0,1
MAPLE
[seq(diff_mult_Xmult_table3(j), j=0..119)]; diff_mult_Xmult_table3 := (n) -> (mult_table3(n) - Xmult_table3(n));
mult_table3 := (n) -> floor(evalf(((((trinv(n)-1)*(((1/2)*trinv(n))+1))-n)+3) * (3+(n-((trinv(n)*(trinv(n)-1))/2))) ));
Xmult_table3 := (n) -> Xmult( ((((trinv(n)-1)*(((1/2)*trinv(n))+1))-n)+3), (3+(n-((trinv(n)*(trinv(n)-1))/2))) );
CROSSREFS
Cf. "Zoomed out" variant: A061858, trinv given at A054425. The first, third and fifth diagonals are given by A048728-A048730.
Sequence in context: A089371 A318679 A133886 * A348250 A289110 A287287
KEYWORD
nonn,tabl
AUTHOR
Antti Karttunen, May 11 2001
STATUS
approved