A131841 Additive persistence of Woodall numbers.
0, 0, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 3, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 2, 3, 3, 3, 3, 2, 3, 2, 2, 2, 3, 3, 3, 3, 3, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 2, 2, 3, 3, 3, 2, 2, 2, 2, 2, 3, 2, 2, 2, 3, 3, 2, 3, 3, 3
Offset: 1
Examples
Woodall number 159 --> 1+5+9=15 --> 1+5=6 thus persistence is 2
Programs
-
Maple
with(numtheory): with(combinat): P:=proc(n) local a,t;t:=0; a:=n*2^n-1; while a>9 do t:=t+1; a:=convert(convert(a,base,10),`+`); od; t; end: seq(P(i),i=1..10^2);
-
Mathematica
f[n_] := Length@ NestWhileList[Plus @@ IntegerDigits@# &, n*2^n - 1, UnsameQ@## &, All] - 2; Array[f, 88] (* James C. McMahon, Mar 01 2025 *)
Formula
Extensions
Corrected entries and Maple code by Paolo P. Lava, Dec 19 2017