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!)
A206308 a(n) = ((2*n+2)*(2*n+3) - 1)*a(n-1) + 2*n*(2*n+1)*a(n-2), a(0)=1, a(1)=19. 3
1, 19, 799, 57527, 6327971, 987163475, 207304329751, 56386777692271, 19284277970756683, 8099396747717806859, 4098294754345210270655, 2458976852607126162392999, 1726201750530202565999885299, 1401675821430524483591906862787 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The denominators of the fractions limiting to the value of A206530.
REFERENCES
E. W. Cheney, Introduction to Approximation Theory, McGraw-Hill, Inc., 1966.
LINKS
FORMULA
a(n) = A125202(n+2)*a(n-1) + A002943(n)*a(n-2), with a(0) = 1, a(1) = 19.
MATHEMATICA
RecurrenceTable[{a[n]==((2n+3)(2n+2)-1)a[n-1]+2n(2n+1)a[n-2], a[0]==1, a[1]==19}, a, {n, 15}]
PROG
(Magma) [n le 2 select 19^(n-1) else (4*n^2+2*n-1)*Self(n-1) + 2*(n-1)*(2*n-1)*Self(n-2): n in [1..31]]; // G. C. Greubel, Dec 21 2022
(SageMath)
@CachedFunction # a = A206308
def a(n): return 19^n if (n<2) else (4*n^2+10*n+5)*a(n-1) + 2*n*(2*n+1)*a(n-2)
[a(n) for n in range(31)] # G. C. Greubel, Dec 21 2022
CROSSREFS
Sequence in context: A280625 A183441 A067621 * A369827 A135562 A139194
KEYWORD
nonn,frac
AUTHOR
Seiichi Kirikami, Feb 11 2012
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 March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)