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!)
A065095 a(1) = 1, a(n+1) is the sum of a(n) and ceiling( arithmetic mean of a(1) ... a(n) ). 8

%I #11 Jun 18 2018 03:41:04

%S 1,2,4,7,11,16,23,33,46,62,83,110,144,186,238,303,383,481,600,744,918,

%T 1128,1380,1681,2039,2464,2968,3563,4264,5088,6054,7184,8503,10040,

%U 11827,13901,16304,19082,22289,25986,30240,35128,40736,47161,54512

%N a(1) = 1, a(n+1) is the sum of a(n) and ceiling( arithmetic mean of a(1) ... a(n) ).

%C It seems that a(n) is asymptotic to C*BesselI(0,2*sqrt(n)) where C is a constant C = 0.78... and BesselI(b,x) is the modified Bessel function of the first kind. Can someone prove this?

%H Harry J. Smith, <a href="/A065095/b065095.txt">Table of n, a(n) for n=1,...,1000</a>

%H <a href="/index/Be#Bessel">Index entries for sequences related to Bessel functions or polynomials</a>

%F a(1) = 1, a(n+1) = a(n) + ceiling((a(1) + a(2) + ... + a(n))/n).

%e a(5) = a(4) + ceiling((a(1)+a(2)+a(3)+a(4))/4) = 7 + ceiling((1+2+4+7)/4) = 7 + floor(14/4) = 7 + 4 = 11.

%p a[1] := 1: summe := 0: flip := 1: for j from 1 to 100 do: print (j, a[flip]); summe := summe + a[flip]: a[1-flip] := a[flip] + ceil(summe/j): flip := 1-flip: od:

%t a[1] = 1; a[n_] := a[n] = a[n - 1] + Ceiling[ Sum[ a[i], {i, 1, n - 1} ]/(n - 1) ]; Table[ a[ n], {n, 1, 45} ]

%o (PARI) { for (n=1, 1000, if (n==1, s=0; a=1, s+=a; a+=ceil(s/(n - 1))); write("b065095.txt", n, " ", a) ) } \\ _Harry J. Smith_, Oct 06 2009

%Y Cf. A065094.

%K nonn,easy

%O 1,2

%A Ulrich Schimke (ulrschimke(AT)aol.com)

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 25 13:02 EDT 2024. Contains 371969 sequences. (Running on oeis4.)