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

%I #30 Sep 08 2022 08:45:16

%S 1,2,5,17,73,382,2365,16937,137861,1257686,12714721,141119617,

%T 1706150125,22321071242,314201147513,4735338283937,76079613690505,

%U 1298088771022522,23441677492095901,446689961120844641

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

%C a(n) = x(n) + y(n) where x(n)/y(n) is the continued fraction [1,2,3,4,...,n].

%C Using a(n) = x(n) - y(n) instead of a(n) = x(n) + y(n) would give A058307.

%H G. C. Greubel, <a href="/A102038/b102038.txt">Table of n, a(n) for n = 1..449</a>

%H Juan S. Auli and Sergi Elizalde, <a href="https://arxiv.org/abs/2003.11533">Wilf equivalences between vincular patterns in inversion sequences</a>, arXiv:2003.11533 [math.CO], 2020.

%H Zhicong Lin, Sherry H. F. Yan, <a href="https://doi.org/10.1016/j.amc.2019.124672">Vincular patterns in inversion sequences</a>, Applied Mathematics and Computation (2020), Vol. 364, 124672.

%F a(n) = A001040(n) + A001053(n) for n>1.

%F From _Paul D. Hanna_, Oct 31 2006: (Start)

%F a(n+1) = Sum_{k=0..n} k!*C(floor((n+k)/2),k)*C(floor((n+k+1)/2),k)).

%F a(n+1) = Sum_{k=0..n} k!*A124428(n+k,k). (End)

%t a[1]= 1; a[2]= 2; a[n_]:= a[n] = (n-1)*a[n-1]+a[n-2]; Table[a[n], {n,20}] (* _Robert G. Wilson v_, Feb 14 2005 *)

%t RecurrenceTable[{a[1]==1,a[2]==2,a[n+1]==n*a[n]+a[n-1]},a,{n,20}] (* _Harvey P. Dale_, Sep 04 2018 *)

%o (PARI) a(n)=sum(k=0,n,k!*binomial((n+k)\2,k)*binomial((n+k+1)\2,k)) \\ _Paul D. Hanna_, Oct 31 2006

%o (Magma) I:=[1,2]; [n le 2 select I[n] else (n-1)*Self(n-1) +Self(n-2): n in [1..30]]; // _G. C. Greubel_, Feb 23 2019

%o (Sage) [sum(factorial(k)*binomial(floor((n+k-1)/2), k)*binomial(floor((n+k)/2), k) for k in (0..n)) for n in (1..30)] # _G. C. Greubel_, Feb 23 2019

%o (GAP) a:=[1,2];; for n in [3..30] do a[n]:=(n-1)*a[n-1]+a[n-2]; od; a; # _G. C. Greubel_, Feb 23 2019

%Y Numerators are in A001040 and denominators in A001053.

%Y Cf. A124428.

%K base,easy,nonn

%O 1,2

%A _Eric Angelini_, Feb 12 2005

%E Edited and extended by _Robert G. Wilson v_, Feb 14 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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)