login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A356520
Numbers k such that A000005(A007953(k)) = A007953(k).
1
1, 2, 10, 11, 20, 100, 101, 110, 200, 1000, 1001, 1010, 1100, 2000, 10000, 10001, 10010, 10100, 11000, 20000, 100000, 100001, 100010, 100100, 101000, 110000, 200000, 1000000, 1000001, 1000010, 1000100, 1001000, 1010000, 1100000, 2000000, 10000000, 10000001
OFFSET
1,2
COMMENTS
Union of A011557 and A052216. I.e., numbers with digital sum 1 or 2. - David A. Corneth, Aug 10 2022
EXAMPLE
k = 101; A000005(A007953(101)) = A007953(101) = 2, thus k = 101 is in the sequence.
MATHEMATICA
Select[Range[1, 10000001], Plus @@ IntegerDigits[#] < 3 &] (* Amiram Eldar, Aug 10 2022 *)
PROG
(PARI) isok(k) = my(s=sumdigits(k)); numdiv(s) == s; \\ Michel Marcus, Aug 10 2022
(PARI) is(n) = my(s = sumdigits(n)); s == 1 || s == 2 \\ David A. Corneth, Aug 10 2022
(Python)
from itertools import count, islice
def agen():
for i in count(0):
yield from [10**i] + [10**i + 10**j for j in range(i+1)]
print(list(islice(agen(), 37))) # Michael S. Branicky, Aug 10 2022
KEYWORD
nonn,easy,base
AUTHOR
Ctibor O. Zizka, Aug 10 2022
STATUS
approved