OFFSET
1,2
COMMENTS
This sequence is a permutation of the natural numbers (with inverse A308541):
- for any nonzero digit d, there are infinitely many multiples of d, hence we can always extend the sequence,
- by the pigeonhole principle, for some nonzero digit t, there are infinitely many terms with initial digit t,
- so eventually every multiple of t will appear in the sequence,
- after a term with initial digit 1, we can always extend the sequence with the least natural number not yet in the sequence,
- as there are infinitely many multiples of t with initial digit 1, so infinitely many terms with initial digit 1, every natural number will eventually appear, QED.
LINKS
Rémy Sigrist, Table of n, a(n) for n = 1..10000
Rémy Sigrist, Colored scatterplot of the first 100000 terms (where the color is function of the initial digits of a(n-1))
EXAMPLE
a(1) = 1.
a(2) = 2 as it is the first multiple of 1 not yet in the sequence.
a(3) = 4 as it is the first multiple of 2 not yet in the sequence.
a(4) = 8 as it is the first multiple of 4 not yet in the sequence.
a(5) = 16 as it is the first multiple of 8 not yet in the sequence.
a(6) = 3 as it is the first multiple of 1 not yet in the sequence.
MATHEMATICA
a[1] = 1; a[n_] := a[n] = Block[{k = 2}, While[Mod[k, First@IntegerDigits[a[n - 1]]] != 0 || MemberQ[Array[a, n - 1], k], k++]; k]; Array[a, 67] (* Giorgos Kalogeropoulos, May 12 2023 *)
PROG
(PARI) { s=0; v=1; u=1; for (n=1, 67, print1 (v ", "); s+=2^v; while (bittest(s, u), u++); forstep (w=ceil(u/d=digits(v)[1])*d, oo, d, if (!bittest(s, w), v=w; break))) }
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Jun 06 2019
STATUS
approved