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.

A032911 Numbers whose set of base-4 digits is a subset of {1,3}.

This page as a plain text file.
%I A032911 #37 Jul 15 2025 14:47:44
%S A032911 1,3,5,7,13,15,21,23,29,31,53,55,61,63,85,87,93,95,117,119,125,127,
%T A032911 213,215,221,223,245,247,253,255,341,343,349,351,373,375,381,383,469,
%U A032911 471,477,479,501,503,509,511,853,855,861,863,885,887,893,895,981,983
%N A032911 Numbers whose set of base-4 digits is a subset of {1,3}.
%C A032911 Numbers that have ones in all even bit positions, counted from least significant bit as position 0. - _Ralf Stephan_, Nov 01 2003
%H A032911 Vincenzo Librandi, <a href="/A032911/b032911.txt">Table of n, a(n) for n = 1..1000</a>
%F A032911 a(2n) = 4a(n) + 1, a(2n+1) = 4a(n) + 3. - _Ralf Stephan_, Nov 01 2003
%e A032911 Sequence in binary: 1 11 101 111 1101 1111 10101 10111 11101 11111 ...
%t A032911 Flatten[Table[FromDigits[#,4]&/@Tuples[{1,3},n],{n,5}]] (* _Vincenzo Librandi_, May 31 2012 *)
%o A032911 (Magma) [n: n in [1..1000] | Set(IntegerToSequence(n, 4)) subset {1, 3}]; // _Vincenzo Librandi_, May 31 2012
%o A032911 (C)
%o A032911 #include <stdint.h>
%o A032911 uint32_t a_next(uint32_t a_n) { return (a_n + 1) | (a_n & 0x55555555); } /* _Falk Hüffner_, Jan 24 2022 */
%o A032911 (Python)
%o A032911 def A032911(n): return (int(bin(m:=n+1)[3:],4)<<1) + ((1<<(m.bit_length()-1<<1))-1)//3 # _Chai Wah Wu_, Oct 13 2023
%Y A032911 Cf. A007090.
%K A032911 nonn,base,easy
%O A032911 1,2
%A A032911 _Clark Kimberling_