OFFSET
1,3
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Robert Baillie and Thomas Schmelzer, Summing Kempner's Curious (Slowly-Convergent) Series, Mathematica Notebook kempnerSums.nb, Wolfram Library Archive, 2008.
FORMULA
Sum_{n>=2} 1/a(n) = 6.084750966700965350831194838591995529232464122788387705746226526437263331240... (calculated using Baillie and Schmelzer's kempnerSums.nb, see Links). - Amiram Eldar, Feb 13 2022
MATHEMATICA
Select[Range[0, 110], !MemberQ[Partition[IntegerDigits[#, 2], 3, 1], {0, 1, 1}]&] (* Harvey P. Dale, Oct 15 2013 *)
PROG
(PARI) is(n)=n=binary(n); for(i=3, #n, if(n[i]&&n[i-1]&&!n[i-2], return(0))); 1 \\ Charles R Greathouse IV, Mar 26 2013
(PARI) is(n)=while(n>10, if(bitand(n, 7)==3, return(0)); n>>=1); 1 \\ Charles R Greathouse IV, Feb 11 2017
(Haskell)
a004744 n = a004744_list !! (n-1)
a004744_list = filter f [0..] where
f x = x < 4 || x `mod` 8 /= 3 && f (x `div` 2)
-- Reinhard Zumkeller, Jul 01 2013
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved