[go: up one dir, main page]

login
Revision History for A169916 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Squares in carryless arithmetic mod 10 with addition and multiplication of digits both defined to be addition mod 10.
(history; published version)
#8 by M. F. Hasler at Thu Mar 26 01:12:47 EDT 2015
STATUS

editing

approved

#7 by M. F. Hasler at Thu Mar 26 01:12:26 EDT 2015
FORMULA

a(n)=a(n') if respective digits of n and n' differ by 0 or 5. In particular, a(10k+m) = a(10k+m+5) if 0 <= m <= 4.

PROG

(PARI) A169916(n)={u=vector(#n=digits(n), i, 1); n=apply(d->n+d*u, n)%10; sum(i=0, 2*#n-2, sum(j=max(1, #n-i), min(2*#n-1-i, #n), n[2*#n-i-j][j])%10*10^i)} \\ M. F. Hasler, Mar 26 2015

STATUS

approved

editing

#6 by Russ Cox at Fri Mar 30 17:38:11 EDT 2012
AUTHOR

David Applegate, _Marc LeBrun (mlb(AT)well.com) _ and N. J. A. Sloane, Jul 20 2010

Discussion
Fri Mar 30
17:38
OEIS Server: https://oeis.org/edit/global/183
#5 by Russ Cox at Fri Mar 30 17:21:02 EDT 2012
AUTHOR

_David Applegate (david(AT)research.att.com), _, Marc LeBrun (mlb(AT)well.com) and N. J. A. Sloane, Jul 20 2010

Discussion
Fri Mar 30
17:21
OEIS Server: https://oeis.org/edit/global/118
#4 by Russ Cox at Fri Mar 30 16:51:45 EDT 2012
AUTHOR

David Applegate (david(AT)research.att.com), Marc LeBrun (mlb(AT)well.com) and _N. J. A. Sloane (njas(AT)research.att.com), _, Jul 20 2010

Discussion
Fri Mar 30
16:51
OEIS Server: https://oeis.org/edit/global/110
#3 by Russ Cox at Sun Jul 10 18:19:44 EDT 2011
LINKS

<a href="/Sindx_index/Ca.html#CARRYLESS">Index entries for sequences related to carryless arithmetic</a>

Discussion
Sun Jul 10
18:19
OEIS Server: https://oeis.org/edit/global/26
#2 by N. J. A. Sloane at Thu Nov 11 07:34:06 EST 2010
LINKS

<a href="/Sindx_Ca.html#CARRYLESS">Index entries for sequences related to carryless arithmetic</a>

KEYWORD

nonn,base,new

#1 by N. J. A. Sloane at Sat Jul 31 03:00:00 EDT 2010
NAME

Squares in carryless arithmetic mod 10 with addition and multiplication of digits both defined to be addition mod 10.

DATA

0, 2, 4, 6, 8, 0, 2, 4, 6, 8, 220, 242, 264, 286, 208, 220, 242, 264, 286, 208, 440, 462, 484, 406, 428, 440, 462, 484, 406, 428, 660, 682, 604, 626, 648, 660, 682, 604, 626, 648, 880, 802, 824, 846, 868, 880, 802, 824, 846, 868, 0, 22, 44, 66, 88, 0, 22, 44, 66, 88, 220, 242

OFFSET

0,2

COMMENTS

The rules of arithmetic used in A169916, A169917, A169918 have very strange consequences. Many of the familiar laws fail. For instance, the arithmetic in A169916 is not associative: 10*(9*2) = 10*1 = 21 != (10*9)*2 = 9*2 = 1.

LINKS

<a href="Sindx_Ca.html#CARRYLESS">Index entries for sequences related to carryless arithmetic</a>

EXAMPLE

a(16) = 16*16 = 242:

....16

....16

------

....72 (6*6 = 6+6 mod 10 = 2, 6*1 = 6+1 mod 10 = 7)

...27.

------

...242

------

CROSSREFS

The four versions are A059729, A169916, A169917, A169918.

KEYWORD

nonn,base,new

AUTHOR

David Applegate (david(AT)research.att.com), Marc LeBrun (mlb(AT)well.com) and N. J. A. Sloane (njas(AT)research.att.com), Jul 20 2010

STATUS

approved