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!)
A093935 a(1) = 1, a(n+1) = a(n) + n*(a(1) + a(2) + ... + a(n)). 1

%I #17 Sep 24 2023 08:47:30

%S 1,2,8,41,249,1754,14084,127057,1272625,14015014,168323364,2189619553,

%T 30670104577,460235322854,7366138539416,125257398648401,

%U 2255126454472401,42855262052316218,857238357862313360

%N a(1) = 1, a(n+1) = a(n) + n*(a(1) + a(2) + ... + a(n)).

%F a(1)=1, a(2)=2, a(n+1) = ((n^2 + n - 1)*a(n) - n*a(n-1))/(n-1) (n >= 2). - _Emeric Deutsch_, Apr 18 2005

%F a(n) ~ c * n * n!, where c = BesselJ(2,2) = 0.3528340286156377191506207876191884610951482075010678369927893147532331585216... - _Vaclav Kotesovec_, Jul 13 2021, updated Sep 24 2023

%p a[1]:=1:a[2]:=2: for n from 2 to 30 do a[n+1]:=((n^2+n-1)*a[n]-n*a[n-1])/(n-1) od:seq(a[n],n=1..23); # _Emeric Deutsch_, Apr 18 2005

%t RecurrenceTable[{a[1]==1, a[2]==2, a[n+1] == ((n^2 + n - 1)*a[n] - n*a[n-1])/(n-1)},a,{n,1,20}] (* _Vaclav Kotesovec_, Jul 13 2021 *)

%K nonn

%O 1,2

%A _Amarnath Murthy_, Apr 26 2004

%E More terms from _Emeric Deutsch_, Apr 18 2005

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.)