The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A249009 a(n+1) gives the number of occurrences of the first digit of a(n) so far, up to and including a(n), with a(0)=0. 6

%I #29 Dec 14 2022 16:25:51

%S 0,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,1,10,11,13,14,15,16,17,18,19,20,

%T 2,3,3,4,3,5,3,6,3,7,3,8,3,9,3,10,21,4,4,5,4,6,4,7,4,8,4,9,4,10,23,5,

%U 5,6,5,7,5,8,5,9,5,10,24,6,6,7,6,8,6,9,6,10

%N a(n+1) gives the number of occurrences of the first digit of a(n) so far, up to and including a(n), with a(0)=0.

%C Inspired by A248034.

%H Alois P. Heinz, <a href="/A249009/b249009.txt">Table of n, a(n) for n = 0..10000</a>

%H Alois P. Heinz, <a href="/A249009/a249009.jpg">Graph of 10^6 terms</a>

%p a:= proc(n) option remember; `if`(n=0, 0,

%p coeff(b(n-1), x, convert(a(n-1), base, 10)[-1] ))

%p end:

%p b:= proc(n) option remember; `if`(n=0, 1, b(n-1)+

%p add(x^i, i=convert(a(n), base, 10)))

%p end:

%p seq(a(n), n=0..120);

%o (MIT/GNU Scheme with memoizing definec-macro from _Antti Karttunen_'s IntSeq-library)

%o (definec (A249009 n) (if (zero? n) n (vector-ref (A249009aux_digit_counts (- n 1)) (A000030 (A249009 (- n 1))))))

%o (definec (A249009aux_digit_counts n) (cond ((zero? n) (vector 1 0 0 0 0 0 0 0 0 0)) (else (let loop ((digcounts-for-n (vector-copy (A249009aux_digit_counts (- n 1)))) (n (A249009 n))) (cond ((zero? n) digcounts-for-n) (else (vector-set! digcounts-for-n (modulo n 10) (+ 1 (vector-ref digcounts-for-n (modulo n 10)))) (loop digcounts-for-n (floor->exact (/ n 10)))))))))

%o (define (A000030 n) (let loop ((n n)) (if (< n 10) n (loop (floor->exact (/ n 10))))))

%o ;; _Antti Karttunen_, Oct 20 2014

%o (Python)

%o from itertools import islice

%o def A249009_gen(): # generator of terms

%o c, clist = 0, [1]+[0]*9

%o while True:

%o yield c

%o c = clist[int(str(c)[0])]

%o for d in str(c):

%o clist[int(d)] += 1

%o A249009_list = list(islice(A249009_gen(),100)) # _Chai Wah Wu_, Dec 13 2022

%Y Cf. A248034, A000030.

%Y Cf. A249069 (analogous sequence in factorial base).

%K nonn,look,base

%O 0,4

%A _Alois P. Heinz_, Oct 18 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 3 05:44 EDT 2024. Contains 373054 sequences. (Running on oeis4.)