login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A306740 Numbers k such that A306607(k) = 0. 1
0, 3, 7, 9, 15, 31, 33, 45, 51, 63, 127, 129, 153, 165, 189, 195, 219, 231, 255, 411, 435, 511, 513, 561, 585, 633, 645, 693, 717, 765, 771, 819, 843, 891, 903, 951, 975, 1023, 2047, 2049, 2145, 2193, 2289, 2313, 2409, 2457, 2553, 2565, 2661, 2709, 2805, 2829, 2925, 2973, 3069, 3075, 3171, 3219 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The first even terms are 0, 68690167808, 68690561024, 68690757632, 68691150848, 68698560512, 68698953728, 68699150336, 68699543552, 68715331584, 68715724800, 68715921408, 68716314624. - Robert Israel, Mar 10 2019
LINKS
MAPLE
f:= proc(n) local L;
L:= convert(n, base, 2);
while nops(L) > 1 do
L:= L[2..-1]-L[1..-2]
od;
op(L)
end proc:
select(f=0, [$0..10000]);
MATHEMATICA
seqQ[n_] := NestWhile[Differences, Reverse[IntegerDigits[n, 2]], Length[#]>1&] == {0}; Select[Range[0, 3000], seqQ] (* Amiram Eldar, Mar 08 2019 *)
CROSSREFS
Cf. A306607. Includes A048701.
Sequence in context: A282534 A303803 A304850 * A320022 A057463 A287124
KEYWORD
nonn,base,look
AUTHOR
Robert Israel, Mar 07 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)