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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A121965 a(n) = (n-1)*a(n-1)-a(n-2). 0
1, 1, 1, 2, 7, 33, 191, 1304, 10241, 90865, 898409, 9791634, 116601199, 1506023953, 20967734143, 313009988192, 4987192076929, 84469255319601, 1515459403675889, 28709259414522290 (list; graph; refs; listen; history; internal format)
OFFSET

1,4

COMMENTS

Essentially the same as A058797.

REFERENCES

Eugene Jahnke and Fritz Emde, Table of Functions with Formulae and Curves, (1945), page 144.

Isak Hilmarsson, Ingibjorg Jonsdottir, Steinunn Sigurdardottir and Sigridur Vidarsdottir, Wilf-classification of mesh patterns of short length, http://skemman.is/stream/get/1946/9181/22991/4/Wilf-classification_of_mesh_patterns_of_short_length.pdf.

FORMULA

a(n) = ( J_n(2)*Y_0(2) - J_0(2)*Y_n(2) )/( J_1(2)* Y_0(2) - J_0(2)*Y_1(2) ) where J and Y are Bessel functions.

MATHEMATICA

Needs["DiscreteMath`RSolve`"]; Clear[f]; f[n_Integer] = Module[{a}, a[n] /.RSolve[{a[n] == (n - 1)*a[n - 1] - a[n - 2], a[0] == 0, a[1] == 1}, a[n], n][[1]] // Simplify]

// ToRadicals Table[Floor[N[f[n]]], {n, 0, 25}]

CROSSREFS

Cf. A106174, A007754, A056921 (bisection).

Sequence in context: A186760 A162661 A104981 * A058797 A006595 A179525

Adjacent sequences:  A121962 A121963 A121964 * A121966 A121967 A121968

KEYWORD

nonn,less

AUTHOR

Roger Bagula (rlbagulatftn(AT)yahoo.com), Sep 02 2006

EXTENSIONS

Values (with rounding errors) and offset corrected by the Assoc. Eds. of the OEIS, Mar 27 2010

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 14 13:08 EST 2012. Contains 205623 sequences.