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!)
A329813 a(n) = denominator(b(n)), where b(0) = b(1) = 1 and b(n) = n*b(n-1)/b(n-2) for n >= 1. 1
1, 1, 1, 1, 1, 1, 1, 2, 5, 5, 7, 14, 6, 15, 275, 11, 91, 637, 14, 200, 935, 187, 247, 12103, 245, 22, 47311, 4301, 247, 112385, 5733, 2772, 1372019, 11339, 38285, 398164, 2184, 86394, 23324323, 56695, 21793, 69977323, 77064, 49368, 434680565, 464899, 937099, 6018049778, 635778, 2128995, 93977938153 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
This sequence is derived from a particular case of a general recurrence relation expressed by B(0) = x, B(1) = y and B(n) = n*B(n-1)/B(n-2), for n > 1 and {x,y} any pair of nonzero real numbers. Scatter plots of sequences of this kind exhibit a particular pattern that suggests the following conjecture:
lim_{n->infinity} B(6n+i)/(6n+i) = C_i and C_i != C_j for 0 < i < j < 7.
This means that B(n)/n approaches a cycle of six different constant values which depend on the particular chosen seed {x,y}. In this particular case the seed is {1,1} and the corresponding conjectured constant limits {C_1, C_2, C_3, C_4, C_5, C_6} are approximately {0.431, 0.615, 1.426, 2.319, 1.626, 0.701}. The corresponding constant limits for a generic seed {x,y} are respectively {C_1*y, C_2*y/x, C_3/x, C_4/y, C_5*x/y, C_6*x}. If x and y are not both positive then four of these constants are negative and two are positive.
LINKS
FORMULA
a(n) = denominator(b(n)), where b(0) = b(1) = 1 and b(n) = n!/Product_{j=1..n-2} a(j), for n > 1.
MATHEMATICA
b[0]=1; b[1]=1;
b[n_]:=b[n]=n*b[n-1]/b[n-2]
(* Table[b[j], {j, 1, 2^10}]//ListPlot *)
Table[Denominator@b[j], {j, 0, 2^5}]
CROSSREFS
Cf. A329654 (numerators), A145102, A145103.
Sequence in context: A142353 A161180 A101858 * A165917 A165898 A194531
KEYWORD
nonn,frac
AUTHOR
Andres Cicuttin, Nov 21 2019
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 24 15:42 EDT 2024. Contains 371960 sequences. (Running on oeis4.)