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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A084229 Let b(1)=1, b(2)=2, b(n) = sum of digits of b(1)+b(2)+b(3)+...+b(n-1), sequence gives values of n such that b(n)=3. 2
3, 5, 7, 9, 17, 19, 27, 29, 87, 95, 97, 159, 591, 599, 601, 663, 1143, 4609, 4617, 4619, 4681, 5161, 8993, 13165, 38277, 38279, 38341, 38821, 42653, 46825, 75043, 79223, 327015, 327023, 327025, 327087, 327567, 331399, 335571, 363789, 367969, 642981, 647153, 2847029, 2847031, 2847093, 2847573 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The {b(n)} sequence is A084228. - N. J. A. Sloane, Jun 26 2014
Note that b(k)==0 (mod 3) for n>2.
LINKS
FORMULA
Conjecture : a(n)/n^3 is bounded.
MATHEMATICA
k = 3; lst = {}; a = 3; While[k < 100000001, b = a + Total@ IntegerDigits@ a; If[b == a + 3, AppendTo[lst, k]; Print@ k]; a = b; k++]; lst (* Robert G. Wilson v, Jun 27 2014 *)
PROG
(PARI) // sumdig(n)=sum(k=0, ceil(log(n)/log(10)), floor(n/10^k)%10) // an=vector(10000); a(n)=if(n<0, 0, an[n]) // an[1]=1; an[2]=2; for(n=3, 5300, an[n]=sumdig(sum(k=1, n-1, a(k)))) // for(n=1, 5300, if(a(n)==3, print1(n, ", ")))
CROSSREFS
Sequence in context: A117913 A064411 A146556 * A191356 A144753 A220221
KEYWORD
base,nonn
AUTHOR
Benoit Cloitre, Jun 21 2003
EXTENSIONS
a(23) onward from Robert G. Wilson v, Jun 27 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)