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!)
A206307 a(n) = ((2*n+2)*(2*n+3) - 1)*a(n-1) + 2*n*(2*n+1)*a(n-2), a(0)=0, a(1)=6. 3
0, 6, 246, 17718, 1948974, 304039950, 63848389494, 17366761942374, 5939432584291902, 2494561685402598846, 1262248212813715016070, 757348927688229009642006, 531658947237136764768688206, 431707065156555052992174823278 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The numerators 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), a(0) = 0, a(1) = 6.
MATHEMATICA
RecurrenceTable[{a[n]==((2n+3)(2n+2)-1)a[n-1]+2n(2n+1)a[n-2], a[0]==0, a[1]==6}, a, {n, 15}]
PROG
(Magma) [n le 2 select 6*(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 20 2022
(SageMath)
@CachedFunction
def a(n): return 6*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 20 2022
CROSSREFS
Sequence in context: A072228 A322559 A229631 * A229475 A281054 A056238
KEYWORD
nonn
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 May 4 07:22 EDT 2024. Contains 372230 sequences. (Running on oeis4.)