OFFSET
1,2
COMMENTS
The digits 0, 6, 8 and 9 contain loops, but 1, 2, 3, 4 (written in "open" style), 5 and 7 do not.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
Robert Baillie and Thomas Schmelzer, Summing Kempner's Curious (Slowly-Convergent) Series, Mathematica Notebook kempnerSums.nb, Wolfram Library Archive, 2008.
FORMULA
Sum_{n>=1} 1/a(n) = 5.427161361994446672956800952211331066904630376796246807177210248900020978222... (calculated using Baillie and Schmelzer's kempnerSums.nb, see Links). - Amiram Eldar, Feb 15 2024
MATHEMATICA
Select[Range[150], Intersection[{0, 6, 8, 9}, Union[IntegerDigits[#]]] == {} &] (* T. D. Noe, Aug 10 2012 *)
FromDigits/@Flatten[Table[Tuples[{1, 2, 3, 4, 5, 7}, n], {n, 3}], 1] (* Harvey P. Dale, Feb 01 2017 *)
CROSSREFS
KEYWORD
base,nonn,easy
AUTHOR
EXTENSIONS
Missing 42 and 44 added by T. D. Noe, Aug 10 2012
STATUS
approved