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 A246834 #11 Sep 21 2018 22:08:11 %S A246834 0,0,1,0,3,2,0,6,10,3,0,7,20,15,4,0,12,22,30,36,5,0,13,40,57,72,45,6, %T A246834 0,14,42,60,76,90,54,7,0,15,44,63,144,95,108,63,8,0,24,46,114,148,180, %U A246834 210,126,136,9,0,25,80,117,152,185,216,245,272,153,10 %N A246834 A(n,k) is the concatenation of n and k*n in binary; square array A(n,k), n>=0, k>=0, read by antidiagonals. %H A246834 Alois P. Heinz, <a href="/A246834/b246834.txt">Antidiagonals n = 0..140, flattened</a> %e A246834 Square array A(n,k) begins: %e A246834 0, 0, 0, 0, 0, 0, 0, 0, 0, ... %e A246834 1, 3, 6, 7, 12, 13, 14, 15, 24, ... %e A246834 2, 10, 20, 22, 40, 42, 44, 46, 80, ... %e A246834 3, 15, 30, 57, 60, 63, 114, 117, 120, ... %e A246834 4, 36, 72, 76, 144, 148, 152, 156, 288, ... %e A246834 5, 45, 90, 95, 180, 185, 190, 355, 360, ... %e A246834 6, 54, 108, 210, 216, 222, 420, 426, 432, ... %e A246834 7, 63, 126, 245, 252, 483, 490, 497, 504, ... %e A246834 8, 136, 272, 280, 544, 552, 560, 568, 1088, ... %p A246834 f:= proc(i, j) local r, h, k; r:=0; h:=0; k:=j; %p A246834 while k>0 do r:=r+2^h*irem(k, 2, 'k'); h:=h+1 od; k:=i; %p A246834 while k>0 do r:=r+2^h*irem(k, 2, 'k'); h:=h+1 od; r %p A246834 end: %p A246834 A:= (n, k)-> f(n, k*n): %p A246834 seq(seq(A(n, d-n), n=0..d), d=0..14); %Y A246834 Columns k=0,1,3 give: A001477, A020330, A246831. %Y A246834 Rows n=0, 1 give: A000004, A004760(k+1). %K A246834 nonn,tabl,base,look %O A246834 0,5 %A A246834 _Alois P. Heinz_, Sep 04 2014