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!)
A292621 a(n) = a(n-1) + a(floor(log(n))) with a(1) = 1, a(2) = 2. 2
1, 2, 3, 4, 5, 6, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 114, 117, 120, 123, 126, 129, 132, 135, 139, 143, 147, 151, 155, 159, 163, 167 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) > c*n*log(n)*log(log(n))*log(log(log(n)))*...*log(log...(log(n))...) (k layers) for any sufficient large n, any constant c and any positive integer k.
The sum of 1/a(i) for i = 1, 2, 3, ... diverges extremely slowly.
LINKS
Fedor Petrov, The proof of the divergence of the sum of 1/a(i), Mathoverflow, Sep 2017.
MAPLE
f:= proc(n) option remember;
procname(n-1)+procname(floor(log(n)))
end proc:
f(1):= 1: f(2):= 2:
map(f, [$1..100]); # Robert Israel, Sep 28 2017
MATHEMATICA
a[n_] := a[n] = If[n <= 2, n, a[n - 1] + a[Floor@ Log@ n]]; Array[a, 62] (* Michael De Vlieger, Sep 21 2017 *)
PROG
(PARI) a(n) = if (n<=2, n, a(n-1) + a(floor(log(n)))); \\ Michel Marcus, Sep 21 2017
CROSSREFS
Sequence in context: A246885 A033059 A031876 * A280693 A281613 A174738
KEYWORD
nonn,easy
AUTHOR
Yi Yang, Sep 20 2017
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 May 15 14:34 EDT 2024. Contains 372540 sequences. (Running on oeis4.)