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!)
A173174 a(n) = cosh(2*n*arcsinh(sqrt(n))). 5

%I #33 Sep 08 2022 08:45:50

%S 1,3,49,1351,51841,2550251,153090001,10850138895,886731088897,

%T 82094249361619,8491781781142001,970614726270742103,

%U 121485428812828080001,16525390478051500325307,2427469037137019032095121,382956978214541873571486751,64576903826545426454350012417,11591229031806966336496244914595

%N a(n) = cosh(2*n*arcsinh(sqrt(n))).

%H Seiichi Manyama, <a href="/A173174/b173174.txt">Table of n, a(n) for n = 0..321</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Chebyshev_polynomials">Chebyshev polynomials</a>.

%H <a href="/index/Ch#Cheby">Index entries for sequences related to Chebyshev polynomials.</a>

%F a(n) = Sum_{k=0..n} binomial(2*n,2*k)*(n+1)^(n-k)*n^k. - _Seiichi Manyama_, Dec 26 2018

%F a(n) = T_{n}(2*n+1) where T_{n}(x) is a Chebyshev polynomial of the first kind. - _Seiichi Manyama_, Dec 29 2018

%p A173174 := proc(n) cosh(2*n*arcsinh(sqrt(n))) ; expand(%) ; simplify(%) ; end proc: # _R. J. Mathar_, Feb 26 2011

%t Table[Round[N[Cosh[(2 n) ArcSinh[Sqrt[n]]], 100]], {n, 0, 30}] (* _Artur Jasinski_ *)

%t Join[{1}, a[n_]:=Sum[Binomial[2 n, 2 k] (n + 1)^(n - k) n^k, {k, 0, n}]; Array[a, 25]] (* _Vincenzo Librandi_, Dec 29 2018 *)

%o (PARI) {a(n) = sum(k=0, n, binomial(2*n, 2*k)*(n+1)^(n-k)*n^k)} \\ _Seiichi Manyama_, Dec 26 2018

%o (PARI) {a(n) = polchebyshev(n, 1, 2*n+1)} \\ _Seiichi Manyama_, Dec 29 2018

%o (Magma) [&+[Binomial(2*n, 2*k)*(n+1)^(n-k)*n^k: k in [0..n]]: n in [0..20]]; // _Vincenzo Librandi_, Dec 29 2018

%Y Cf. A132592, A146311 - A146313, A173115, A173116 A173121, A173127 - A173131, A173133, A173134, A173148, A173151, A173170, A173171.

%Y Cf. A322746.

%Y Main diagonal of A322790.

%K nonn

%O 0,2

%A _Artur Jasinski_, Feb 11 2010

%E More terms from _Seiichi Manyama_, Dec 26 2018

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 07:42 EDT 2024. Contains 371905 sequences. (Running on oeis4.)