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.
%I A169894 #24 Dec 20 2023 05:22:06 %S A169894 0,1,1,2,2,2,3,3,3,3,4,4,4,4,4,5,5,5,5,5,5,6,6,6,6,6,6,6,7,7,7,7,7,7, %T A169894 7,7,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,10,0,0,0,0,0,0,0,0,0,10,11, %U A169894 11,1,1,1,1,1,1,1,1,11,11,12,12,12,2,2,2,2,2,2,2,12,12,12 %N A169894 Table of carryless sums i + j, i>=0, j>=0, read by antidiagonals. %H A169894 Stefano Spezia, <a href="/A169894/b169894.txt">First 151 antidiagonals of the table, flattened</a> %H A169894 <a href="/index/Ca#CARRYLESS">Index entries for sequences related to carryless arithmetic</a> %e A169894 Table begins: %e A169894 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ... %e A169894 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 11, 12, 13, 14, 15, 16 ... %e A169894 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 12, 13, 14, 15, 16, 17 ... %e A169894 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 13, 14, 15, 16, 17, 18 ... %e A169894 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 14, 15, 16, 17, 18, 19 ... %e A169894 ... %p A169894 A169894 := proc(a,b) %p A169894 local adigs,bdigs,cdigs ; %p A169894 adigs := convert(a,base,10) ; %p A169894 bdigs := convert(b,base,10) ; %p A169894 len := max(nops(adigs),nops(bdigs)) ; %p A169894 adigs := [op(adigs),seq(0,d=1..len-nops(adigs))] ; %p A169894 bdigs := [op(bdigs),seq(0,d=1..len-nops(bdigs))] ; %p A169894 cdigs := [] ; %p A169894 for d from 1 to len do %p A169894 cdigs := [op(cdigs),A010879(op(d,adigs)+op(d,bdigs))] ; %p A169894 end do: %p A169894 add(op(d,cdigs)*10^(d-1),d=1..len) ; %p A169894 end proc: # _R. J. Mathar_, Jul 12 2013 %t A169894 len[num_]:=Length[IntegerDigits[num]]; digit[num_, d_]:=Part[IntegerDigits[num], d]; T[i_, j_] := FromDigits[Reverse[CoefficientList[PolynomialMod[Sum[digit[i, c]*x^(len[i]-c), {c, len[i]}]+Sum[digit[j, r]*x^(len[j]-r), {r, len[j]}], 10], x]]]; Table[T[i - j, j], {i, 0, 12}, {j, 0, i}] (* _Stefano Spezia_, Dec 20 2023 *) %Y A169894 Cf. A004520 (diagonal), A059692 (carryless products). %K A169894 nonn,base,look,tabl %O A169894 0,4 %A A169894 _David Applegate_, _Marc LeBrun_ and _N. J. A. Sloane_, Jul 06 2010