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!)
A127145 Q(3,n), where Q(m,k) is defined in A127080 and A127137, 4

%I #7 Jan 31 2020 09:37:20

%S 1,1,1,-2,-9,4,75,24,-735,-816,8505,17760,-114345,-388800,1756755,

%T 9233280,-30405375,-242968320,585810225,7125511680,-12439852425,

%U -232838323200,288735522075,8450546227200,-7273385294175,-339004760371200,197646339515625,14945696794828800,-5763367260275625

%N Q(3,n), where Q(m,k) is defined in A127080 and A127137,

%D V. van der Noort and N. J. A. Sloane, Paper in preparation, 2007.

%H G. C. Greubel, <a href="/A127145/b127145.txt">Table of n, a(n) for n = 0..500</a>

%F See A127080 for e.g.f.

%p Q:= proc(n, k) option remember;

%p if k<2 then 1

%p elif `mod`(k,2)=0 then (n-k+1)*Q(n+1,k-1) - (k-1)*Q(n+2,k-2)

%p else ( (n-k+1)*Q(n+1,k-1) - (k-1)*(n+1)*Q(n+2,k-2) )/n

%p fi; end;

%p seq( Q(3, n), n=0..30); # _G. C. Greubel_, Jan 30 2020

%t Q[n_, k_]:= Q[n, k]= If[k<2, 1, If[EvenQ[k], (n-k+1)*Q[n+1, k-1] - (k-1)*Q[n + 2, k-2], ((n-k+1)*Q[n+1, k-1] - (k-1)*(n+1)*Q[n+2, k-2])/n]]; Table[Q[3, k], {k,0,30}] (* _G. C. Greubel_, Jan 30 2020 *)

%o (Sage)

%o @CachedFunction

%o def Q(n,k):

%o if (k<2): return 1

%o elif (mod(k,2)==0): return (n-k+1)*Q(n+1,k-1) - (k-1)*Q(n+2,k-2)

%o else: return ( (n-k+1)*Q(n+1,k-1) - (k-1)*(n+1)*Q(n+2,k-2) )/n

%o [Q(3,n) for n in (0..30)] # _G. C. Greubel_, Jan 30 2020

%Y Cf. A126965.

%Y Column 3 of A127080.

%Y Cf. A127137, A127138, A127144.

%K sign

%O 0,4

%A _N. J. A. Sloane_, Mar 24 2007

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 16 05:56 EDT 2024. Contains 372549 sequences. (Running on oeis4.)