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!)
A119445 Leading diagonal of triangle A119444. 2

%I #13 Apr 07 2023 08:57:35

%S 1,1,1,1,1,3,7,13,27,63,109,207,331,553,931,1531,2527,4093,6673,10831,

%T 17563,28561,46227,74883,121219,196239,317607,514047,831823,1346041,

%U 2178079,3524323,5702619,9227161,14930019,24157471,39087823,63245551

%N Leading diagonal of triangle A119444.

%H G. C. Greubel, <a href="/A119445/b119445.txt">Table of n, a(n) for n = 1..1000</a>

%F a(n) = A119444(n, n).

%t t[1, n_]:= Fibonacci[n+1]; (* t = A119444 *)

%t t[m_, n_]/; 1<m<=n:= t[m, n]= (n-m+1)*Floor[(t[m-1,n] -1)/(n-m+1)];

%t t[_, _]= 0;

%t A119445[n_]:= A119445[n]= t[n,n];

%t Table[A119445[n], {n,60}] (* _G. C. Greubel_, Apr 07 2023 *)

%o (Magma)

%o function t(n,k) // t = A119444

%o if k eq 1 then return Fibonacci(n+1);

%o else return (n-k+1)*Floor((t(n,k-1) -1)/(n-k+1));

%o end if;

%o end function;

%o [t(n,n): n in [1..60]]; // _G. C. Greubel_, Apr 07 2023

%o (SageMath)

%o def t(n, k): # t = A119444

%o if (k==1): return fibonacci(n+1)

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

%o def A119445(n): return t(n,n)

%o [A119445(n) for n in range(1,61)] # _G. C. Greubel_, Apr 07 2023

%Y Cf. A119444 for triangle corresponding to this sequence.

%Y Cf. A100461 for powers of 2, A119446 for primes.

%K nonn

%O 1,6

%A _Joshua Zucker_, May 20 2006

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 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)