The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A309393 Let f(n) be equal to n + S(n) + S(S(n)) ... + S(S(S..(n))), where the last term is less than 10 and S(n) is the sum of digits. This is the sequence of numbers k such that the equation f(x) = k has a record number of solutions. 0
1, 30, 66, 204, 819, 70032, 3000000000096 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjecture from Daniel Starodubtsev and Dmitry Petukhov, Nov 19 2019: (Start)
a(8) = 20000000000000046;
a(9) = 8900000000000000000000127. (End)
LINKS
EXAMPLE
a(4) = 204, because 204 = f(179) = f(185) = f(191) = f(201), which has more solutions than any smaller number.
MATHEMATICA
T = 0*Range[10^5]; f[n_] := Block[{x=n, s=n}, While[x >= 10, x = Plus@@ IntegerDigits[x]; s += x]; s]; Do[v = f[i]; If[v <= 10^5, T[[v]]++], {i, 10^5}]; Flatten[Position[T, #, 1, 1] & /@ Range[6]] (* Giovanni Resta, Jul 30 2019 *)
PROG
(PARI) f(n) = {s=n; m=n; while(sumdigits(s)>9, s=sumdigits(s); m+=s); if(n<10, m=0); m+sumdigits(s); }
g(n) = sum(k=1, n, f(k)==n);
lista(NN) = {x=1; print1(1); for(n=2, NN, if(g(n)>x, x=g(n); print1(", ", n)))} \\ Jinyuan Wang, Jul 31 2019
CROSSREFS
Sequence in context: A290145 A157346 A219543 * A154055 A270758 A241192
KEYWORD
nonn,base,more
AUTHOR
Daniel Starodubtsev, Jul 28 2019
EXTENSIONS
a(7) from Bert Dobbelaere, Aug 15 2019
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 June 10 09:13 EDT 2024. Contains 373259 sequences. (Running on oeis4.)