login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A043556
Number of runs in base-4 representation of n.
4
1, 1, 1, 1, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 3, 3, 3, 2, 1, 2, 2, 3, 3, 2, 3, 3, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 2, 2, 1, 2, 3, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 2, 2, 2, 1, 2, 3, 3, 3, 4, 3, 4, 4, 4, 4, 3, 4, 4, 4, 4, 3, 2, 3, 3, 3, 2, 1, 2, 2, 3, 3
OFFSET
0,5
COMMENTS
Every positive integers occurs infinitely many times. See A297770 for a guide to related sequences.
FORMULA
a(n) << log n. In particular, a(n) <= log(n)/log(4) + 1. - Charles R Greathouse IV, Jul 13 2024
MATHEMATICA
b = 4; s[n_] := Length[Split[IntegerDigits[n, b]]];
Table[s[n], {n, 1, 200}]
PROG
(Python)
from itertools import groupby
from sympy.ntheory import digits
def A043556(n): return len(list(groupby(digits(n, 4)[1:]))) # Chai Wah Wu, Jul 13 2024
CROSSREFS
Cf. A297772 (number of distinct runs), A297770.
Sequence in context: A270746 A043531 A297772 * A230643 A344117 A163367
KEYWORD
nonn,base
EXTENSIONS
Updated by Clark Kimberling, Feb 03 2018
STATUS
approved