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

A142457
A triangular sequence "representation" of the modulo 11 Integer field: t(+)(n,m)=Mod[n + m, 11]; t(x)(n,m)=Mod[n*m, 11]; t(n,m)=Mod[t(=)(n,m)*t(X)(n,m),11].
0
0, 0, 2, 0, 6, 5, 0, 1, 8, 10, 0, 9, 4, 7, 7, 0, 8, 4, 10, 4, 8, 0, 9, 8, 8, 9, 0, 3, 0, 1, 5, 1, 0, 2, 7, 4, 0, 6, 6, 0, 10, 3, 1, 4, 1, 0, 2, 0, 5, 6, 3, 7, 7, 3, 6, 0, 0, 9, 5, 10, 2, 3, 2, 10, 5, 9
OFFSET
1,3
COMMENTS
Row sums are:
{0, 2, 11, 19, 27, 34, 37, 20, 31, 39, 55}.
Modulo eleven they are:
{0, 2, 0, 8, 5, 1, 4, 9, 9, 6, 0}.
The representation is "faithful": all the digits show up.
In "Infinity" is like "odd" : even*odd=odd
1/Infinity=0
then
Mod[n+m,Infinity]
Mod[n*m,Infinity]
Representation of Integer field"Z"=Mod[Mod[n+m,Infinity]*Mod[n*m,Infinity],Infinity]
is like 11 not 10?
The primes as the Algebraic geometry people seem to think?
FORMULA
t(+)(n,m)=Mod[n + m, 11]; t(x)(n,m)=Mod[n*m, 11]; t(n,m)=Mod[t(=)(n,m)*t(X)(n,m),11].
EXAMPLE
{0},
{0, 2},
{0, 6, 5},
{0, 1, 8, 10},
{0, 9, 4, 7, 7},
{0, 8, 4, 10, 4, 8},
{0, 9, 8, 8, 9, 0, 3},
{0, 1, 5, 1, 0, 2, 7, 4},
{0, 6, 6, 0, 10, 3, 1, 4, 1},
{0, 2, 0, 5, 6, 3, 7, 7, 3, 6},
{0, 0, 9, 5, 10, 2, 3, 2, 10, 5, 9}
MATHEMATICA
Clear[t1, t2, t, n, m, a] t1[n_, m_] = Mod[n + m, 11] t2[n_, m_] = Mod[n*m, 11] t[n_, m_] = Mod[t1[n, m]*t2[n, m], 11] a = Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]
CROSSREFS
Sequence in context: A335728 A078037 A088508 * A100711 A199464 A189961
KEYWORD
nonn,uned
AUTHOR
STATUS
approved