OFFSET
1,4
COMMENTS
Every positive integers occurs infinitely many times. See A297770 for a guide to related sequences.
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
EXAMPLE
123456 in base-4: 1,3,2,0,2,1,0,0,0; seven runs, of which 5 are distinct, so that a(123456) = 5.
MATHEMATICA
b = 4; s[n_] := Length[Union[Split[IntegerDigits[n, b]]]]
Table[s[n], {n, 1, 200}]
PROG
(Python)
from itertools import groupby
from sympy.ntheory import digits
def A297772(n): return len(set(map(lambda x:tuple(x[1]), groupby(sympydigits(n, 4)[1:])))) # Chai Wah Wu, Jul 13 2024
(PARI) apply( {A297772(n)=my(r=Vec(0, 4), c); while(n, my(d=bitand(n, 3), L=valuation(n+if(d==3, 1, d==2, n\2+1, d, n<<1+1), if(d==2, 2, 4))); d==2 && L\/=2; !bittest(r[1+d], L) && c++ && r[1+d] += 1<<L; n>>=2*L); c}, [0..99]) \\ M. F. Hasler, Jul 15 2024
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Clark Kimberling, Jan 27 2018
STATUS
approved