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!)
A370261 a(n) = sqrt(A370259(2*n)/(n+1)) for n >= 1. 4
1, 5, 65, 1449, 46561, 1968525, 103565057, 6531391313, 480749649601, 40482981221781, 3840053099665729, 405275779792031225, 47113209228513626017, 5982545638922153790749, 823992221632687352744961, 122360935410018418223907489, 19489013519781051891806113153 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The sequence is conjectured to be integral.
LINKS
FORMULA
a(n) = sqrt( (T(2*n, 2*n+1) - 1)/((n+1)*(2*n)^3) ), where T(n, x) is the n-th Chebyshev polynomial of the first kind.
MAPLE
A370259 := n -> simplify( (ChebyshevT(n, n+1) - 1)/n^3 ):
seq(sqrt(A370259(2*n)/(n+1)), n = 1..20);
MATHEMATICA
Table[Sqrt[(ChebyshevT[2*n, 2*n + 1] - 1)/(2*n)^3/(n + 1)], {n, 20}] (* Paolo Xausa, Jul 24 2024 *)
PROG
(Python)
from math import isqrt
from sympy import chebyshevt
def A370261(n): return isqrt((chebyshevt((m:=n<<1), m+1)-1)//((n+1)*m**3)) # Chai Wah Wu, Mar 13 2024
CROSSREFS
Sequence in context: A157097 A349470 A234295 * A251575 A277347 A276755
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Mar 11 2024
STATUS
approved

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 August 14 15:36 EDT 2024. Contains 375165 sequences. (Running on oeis4.)