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.

A061859 Differences between the ordinary multiplication table A004247 and Xmult table A048720, computed for {3..n} * {3..n}.

Original entry on oeis.org

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

Views

Author

Antti Karttunen, May 11 2001

Keywords

Crossrefs

Cf. "Zoomed out" variant: A061858, trinv given at A054425. The first, third and fifth diagonals are given by A048728-A048730.

Programs

  • 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))) );