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!)
A064184 Denominator of sequence defined by recursion c(n)=1+c(n-2)/c(n-1), c(0)=0, c(1)=1. 1
1, 1, 1, 1, 2, 3, 14, 69, 2338, 270825, 1546051598, 706593182981475, 2673049418728144394217734, 3191384003253515767044930785193578829525, 20884425143442468474684561246519089172344375280349724305463253298 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = (a(n-1) * a(n-4) + a(n-2)^2) * a(n-2) /a(n-4).
a(n) = A066356(n-1) * a(n-2).
PROG
(PARI) {a(n) = if( n<4, n>=0, (a(n-1) * a(n-4) + a(n-2)^2) * a(n-2) / a(n-4))}
CROSSREFS
Cf. A066356.
Sequence in context: A141148 A275554 A346553 * A366326 A203761 A154750
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Dec 21 2001
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 August 3 05:44 EDT 2024. Contains 374875 sequences. (Running on oeis4.)