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”).

A328019
Positions of 1 in A328018.
1
1, 7, 35, 119, 387, 1050, 2786, 7160, 17157, 39087, 78453, 167183, 344072, 697116, 1310344, 2455274, 4569557, 7758203, 13461761, 23063807, 39017035, 66702580, 106675941, 172270944, 274763136, 437839603, 693741098, 1044076002, 1596344378, 2414009807, 3653875720
OFFSET
1,2
COMMENTS
Does a(n+1)/a(n) tend to 1 as n tends to infinity? - Rémy Sigrist, Nov 11 2019
LINKS
FORMULA
a(1) = 1; a(n + 1) = A092433(a(n)) for n > 0.
EXAMPLE
A328018 starts like this: 1, 2, 3, 4, 5, 6, 1, 8, 9, 10, 11, 12, 13, 2, 15, 16, 3, 18, 19, 20, 4, 22, 23, 24, 25, 26, 5, 6, 29, 30, 31, 32, 33, 34, 1, 36, 8, 38, 39, 40.
This has 1's in positions 1, 7 and 35. Therefore, 1, 7 and 35 are in the sequence.
MATHEMATICA
With[{s = Select[Range[10^6], Or[Mod[#, 7] == 0, DigitCount[#, 10, 7] > 0] &]}, Nest[Append[#, s[[#[[-1]] ]] ] &, {1}, 12]] (* Michael De Vlieger, Oct 17 2019 *)
PROG
(PARI) print1 (w=1", "); k=0; for (n=1, oo, if (n%7==0 || setsearch(Set(digits(n)), 7), if (w==k++, print1 (w=n", ")))) \\ Rémy Sigrist, Nov 11 2019
(PARI) See Links section.
CROSSREFS
Sequence in context: A325732 A124090 A250284 * A327243 A059595 A327385
KEYWORD
nonn,base
AUTHOR
Rens Reus and David A. Corneth, Oct 01 2019
EXTENSIONS
More terms from Rémy Sigrist, Nov 11 2019
STATUS
approved