login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


a(n) = if n < 10 then n else a(digitsum(n)) + digitsum(n), where digitsum(n)=A007953(n), the sum of digits in decimal representation of n.
1

%I #5 Mar 30 2012 18:50:55

%S 0,1,2,3,4,5,6,7,8,9,2,4,6,8,10,12,14,16,18,12,4,6,8,10,12,14,16,18,

%T 12,15,6,8,10,12,14,16,18,12,15,18,8,10,12,14,16,18,12,15,18,21,10,12,

%U 14,16,18,12,15,18,21,24,12,14,16,18,12,15,18,21,24,27,14,16,18,12,15,18

%N a(n) = if n < 10 then n else a(digitsum(n)) + digitsum(n), where digitsum(n)=A007953(n), the sum of digits in decimal representation of n.

%H R. Zumkeller, <a href="/A122481/b122481.txt">Table of n, a(n) for n = 0..10000</a>

%e a(49)=a(4+9)+(4+9)=a(13)+13=a(1+3)+(1+3)+13=a(4)+4+13=4+4+13=21.

%p ds := proc(n) local t1,t2; t1 := n; t2 := 0; while t1 <> 0 do t2 := t2 + (t1 mod 10); t1 := floor(t1/10); od: t2; end;

%p M:=10000; a:=array(0..M); for n from 0 to 9 do a[n]:=n; lprint(n, a[n]); od: for n from 10 to M do a[n]:=a[ds(n)]+ds(n); lprint(n, a[n]); od:

%Y Cf. A010888.

%K nonn,base

%O 0,3

%A _Reinhard Zumkeller_, Sep 15 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 20 20:29 EDT 2024. Contains 376078 sequences. (Running on oeis4.)