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!)
A329028 The least missing nonzero digit in the primorial base expansion of n. 6

%I #16 Mar 13 2024 01:51:00

%S 1,2,2,2,1,3,2,2,2,2,3,3,1,3,3,3,1,3,1,2,2,2,1,4,1,2,2,2,1,3,2,2,2,2,

%T 3,3,2,2,2,2,3,3,3,3,3,3,3,3,2,2,2,2,4,4,2,2,2,2,3,3,1,3,3,3,1,3,3,3,

%U 3,3,3,3,1,3,3,3,1,3,1,4,4,4,1,4,1,3,3,3,1,3,1,2,2,2,1,4,2,2,2,2,4,4,1,4,4,4

%N The least missing nonzero digit in the primorial base expansion of n.

%H Antti Karttunen, <a href="/A329028/b329028.txt">Table of n, a(n) for n = 0..32786</a>

%H <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a>.

%F a(n) = A134193(A276086(n)) = A257993(A328835(n)).

%F a(A276086(n)) = A329030(n).

%e 19 in primorial base (A049345) is written as "301". The least missing nonzero digit is 2, thus a(19) = 2.

%e 809 in primorial base is written as "35421". The least missing nonzero digit is 6, thus a(809) = 6, and this is also the first position where 6 appears in this sequence.

%t a[n_] := Module[{k = n, p = 2, s = {}, r}, While[{k, r} = QuotientRemainder[k, p]; k != 0 || r != 0, AppendTo[s, r]; p = NextPrime[p]]; Min[Complement[Range[Max[s] + 1], s]]]; a[0] = 1; Array[a, 100, 0] (* _Amiram Eldar_, Mar 13 2024 *)

%o (PARI) A329028(n) = { my(m=Map(), p=2); while(n, mapput(m,(n%p),1); n = n\p; p = nextprime(1+p)); for(k=1,oo,if(!mapisdefined(m,k),return(k))); };

%Y Cf. A049345, A134193, A257993, A276086, A328835, A329027, A329030.

%Y Cf. A328840 (the positions of ones in this sequence).

%Y Cf. A257079 for analogous sequence.

%K nonn,base

%O 0,2

%A _Antti Karttunen_, Nov 03 2019

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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)