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.

A306740 Numbers k such that A306607(k) = 0.

This page as a plain text file.
%I A306740 #30 Mar 20 2022 02:18:37
%S A306740 0,3,7,9,15,31,33,45,51,63,127,129,153,165,189,195,219,231,255,411,
%T A306740 435,511,513,561,585,633,645,693,717,765,771,819,843,891,903,951,975,
%U A306740 1023,2047,2049,2145,2193,2289,2313,2409,2457,2553,2565,2661,2709,2805,2829,2925,2973,3069,3075,3171,3219
%N A306740 Numbers k such that A306607(k) = 0.
%C A306740 The first even terms are 0, 68690167808, 68690561024, 68690757632, 68691150848, 68698560512, 68698953728, 68699150336, 68699543552, 68715331584, 68715724800, 68715921408, 68716314624. - _Robert Israel_, Mar 10 2019
%H A306740 Robert Israel, <a href="/A306740/b306740.txt">Table of n, a(n) for n = 1..10000</a>
%p A306740 f:= proc(n) local L;
%p A306740   L:= convert(n, base, 2);
%p A306740   while nops(L) > 1 do
%p A306740     L:= L[2..-1]-L[1..-2]
%p A306740   od;
%p A306740   op(L)
%p A306740 end proc:
%p A306740 select(f=0, [$0..10000]);
%t A306740 seqQ[n_] := NestWhile[Differences, Reverse[IntegerDigits[n, 2]], Length[#]>1&] == {0}; Select[Range[0, 3000], seqQ] (* _Amiram Eldar_, Mar 08 2019 *)
%Y A306740 Cf. A306607.  Includes A048701.
%K A306740 nonn,base,look
%O A306740 1,2
%A A306740 _Robert Israel_, Mar 07 2019