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!)
A144816 Denominators of triangle T(n,k), n>=0, 0<=k<=n, read by rows: T(n,k) is the coefficient of x^(2*k+1) in polynomial t_n(x), used to define continuous and n times differentiable sigmoidal transfer functions. 4

%I #28 Jan 25 2022 12:30:54

%S 1,2,2,8,4,8,16,16,16,16,128,32,64,32,128,256,256,128,128,256,256,

%T 1024,512,1024,256,1024,512,1024,2048,2048,2048,2048,2048,2048,2048,

%U 2048,32768,4096,8192,4096,16384,4096,8192,4096,32768,65536,65536,16384

%N Denominators of triangle T(n,k), n>=0, 0<=k<=n, read by rows: T(n,k) is the coefficient of x^(2*k+1) in polynomial t_n(x), used to define continuous and n times differentiable sigmoidal transfer functions.

%H Alois P. Heinz, <a href="/A144816/b144816.txt">Rows n = 0..140, flattened</a>

%e Triangle begins:

%e 1;

%e 2, 2;

%e 8, 4, 8;

%e 16, 16, 16, 16;

%e 128, 32, 64, 32, 128;

%e ...

%p # Function T(n,k) defined in A144815.

%p seq(seq(denom(T(n,k)), k=0..n), n=0..10);

%t row[n_] := Module[{f, a, eq}, f = Function[x, Sum[a[2*k+1]*x^(2*k+1), {k, 0, n}]]; eq = Table[Derivative[k][f][1] == If[k == 0, 1, 0], {k, 0, n}]; Table[a[2*k+1], {k, 0, n}] /. Solve[eq] // First]; Table[row[n] // Denominator, {n, 0, 10}] // Flatten (* _Jean-François Alcover_, Feb 03 2014 *)

%Y See A144815 for more information on T(n,k).

%Y Main diagonal and column k=0 gives A046161.

%Y Column k=1 gives A101926(n-1) = 2^A101925(n-1) = 2^(A005187(n-1)+1).

%Y Cf. A077070.

%K frac,nonn,tabl,look

%O 0,2

%A _Alois P. Heinz_, Sep 21 2008

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 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)