login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A158802 Recursive sequence as solution to a differential equation: a(n)=((n - 1)*(n - 3)*a(n - 1) - a(n - 2) + a(n - 3))/(n*(n - 1)) 0
0, 1, -4, 0, 16, 10, 12, 182, 1120, 7452, 58640, 520784, 5142144, 55929640, 664505744, 8562670920, 118939979008, 1771631324848, 28168269788160, 476151820931168, 8526830353553920, 161255217263900256 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

REFERENCES

Martin Braun,Differential Equations and Their Applications : An Introduction to Applied Mathematics (Texts in Applied Mathematics, Vol. 11),Springer,1992,page283, Example 5.

FORMULA

a(n)=((n - 1)*(n - 3)*a(n - 1) - a(n - 2) + a(n - 3))/(n*(n - 1));

out_(n)=n*n!*a(n)

MATHEMATICA

Clear[a, n];

a[0] = 1; a[1] = 1; a[2] = -1;

a[n_] := a[n] = ((n - 1)*(n - 3)*a[n - 1] - a[n - 2] + a[n - 3])/(n*(n - 1));

Table[n*n!*a[n], {n, 0, 30}]

CROSSREFS

Sequence in context: A086262 A167361 A167314 * A030212 A167359 A007216

Adjacent sequences:  A158799 A158800 A158801 * A158803 A158804 A158805

KEYWORD

sign,uned

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Mar 27 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 12:30 EST 2012. Contains 206014 sequences.