OFFSET
0,4
COMMENTS
For the definition of the Run Length Transform see A246595.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..8191
FORMULA
a(2^n-1) = n$ where n$ is the swinging factorial of n, A056040(n).
MATHEMATICA
f[n_] := n!/Quotient[n, 2]!^2; Table[Times @@ (f[Length[#]]&) /@ Select[ Split[ IntegerDigits[n, 2]], #[[1]] == 1&], {n, 0, 85}] (* Jean-François Alcover, Jul 11 2017 *)
PROG
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Peter Luschny, Sep 07 2014
STATUS
approved