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!)
A169713 The function W_n(10) (see Borwein et al. reference for definition). 4
1, 252, 4653, 31504, 127905, 384156, 948157, 2039808, 3965409, 7132060, 12062061, 19407312, 29963713, 44685564, 64699965, 91321216, 126065217, 170663868, 227079469, 297519120, 384449121, 490609372, 619027773, 773034624, 956277025, 1172733276 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Jonathan M. Borwein, Dirk Nuyens, Armin Straub and James Wan, Some Arithmetic Properties of Short Random Walk Integrals, May 2011.
FORMULA
a(n) = 120*n^5 - 600*n^4 + 1250*n^3 - 1225*n^2 + 456*n. - Peter Luschny, May 27 2017
G.f.: x*(1+246*x+3156*x^2+7346*x^3+3651*x^4)/(1-x)^6. - Vincenzo Librandi, May 28 2017
a(n) = 6*a(n-1)-15*a(n-2)+20*a(n-3)-15*a(n-4)+6*a(n-5)-a(n-6). - Vincenzo Librandi, May 28 2017
MAPLE
A169713 := proc(n)
W(n, 10) ;
end proc:
seq(A169713(n), n=1..20) ; # uses W() from A169715; R. J. Mathar, Mar 27 2012
a := n -> 120*n^5 - 600*n^4 + 1250*n^3 - 1225*n^2 + 456*n:
seq(a(n), n=1..20); # Peter Luschny, May 27 2017
MATHEMATICA
Table[120 n^5 - 600 n^4 + 1250 n^3 - 1225 n^2 + 456 n, {n, 1, 40}] (* or *) CoefficientList[Series[(1 + 246 x + 3156 x^2 + 7346 x^3 + 3651 x^4) / (1 - x)^6, {x, 0, 50}], x] (* Vincenzo Librandi, May 28 2017 *)
LinearRecurrence[{6, -15, 20, -15, 6, -1}, {1, 252, 4653, 31504, 127905, 384156}, 30] (* Harvey P. Dale, Aug 09 2023 *)
PROG
(Magma) [120*n^5-600*n^4+1250*n^3-1225*n^2+456*n: n in [1..40]]; // Vincenzo Librandi, May 28 2017
(PARI) a(n)=120*n^5-600*n^4+1250*n^3-1225*n^2+456*n \\ Charles R Greathouse IV, Oct 21 2022
CROSSREFS
Column 5 of A287316.
Cf. A287314.
Sequence in context: A271496 A218418 A184498 * A099059 A151610 A250085
KEYWORD
nonn,easy,changed
AUTHOR
N. J. A. Sloane, Apr 17 2010
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 April 16 05:35 EDT 2024. Contains 371697 sequences. (Running on oeis4.)