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.

A353110 Binary representation of A000422(n).

This page as a plain text file.
%I A353110 #12 Apr 26 2022 04:51:34
%S A353110 1,10101,101000001,1000011100001,1101010000110001,
%T A353110 10011111101111110001,11101001100101110110001,
%U A353110 101001110010111111110110001,111010110111100110100010110001,1010001110111010100100110010110001
%N A353110 Binary representation of A000422(n).
%F A353110 a(n) = A007088(A000422(n)).
%o A353110 (Ruby)
%o A353110 def A(k, n)
%o A353110   (1..n).map{|i| (1..i).to_a.reverse.join.to_i.to_s(k).to_i}
%o A353110 end
%o A353110 p A(2, 10)
%Y A353110 Cf. A000422, A353111, A353112, A353113, A353114, A353115, A353116, A353117.
%Y A353110 Cf. A007088, A050926.
%K A353110 nonn,base
%O A353110 1,2
%A A353110 _Seiichi Manyama_, Apr 24 2022