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!)
A141609 a(n)=(a(n - 1)*a(n - 2) + a(n - 1)^2)/a(n - 3). 0
1, 1, 1, 2, 6, 48, 1296, 290304, 1763596800, 2400297571123200, 19846204885558066176000000, 223334408639880528216369404299444224000000, 20780031060559302184531906881808103844643569442380668928000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
A sequence constructed to have the pattern of a Somos-type sequence.
LINKS
FORMULA
a(n+1) / a(n) = A006277(n-1). - Michael Somos, Dec 29 2012
MATHEMATICA
Clear[a, f, t, n, m] a[0] = 1; a[1] = 1; a[2] = 1; a[n_] := a[n] = (a[n - 1]*a[n - 2] + a[n - 1]^2)/a[n - 3]; Table[a[n], {n, 0, 20}]
RecurrenceTable[{a[1]==a[2]==a[3]==1, a[n]==(a[n-1]a[n-2]+a[n-1]^2)/a[n-3]}, a, {n, 14}] (* Harvey P. Dale, Oct 01 2017 *)
CROSSREFS
Sequence in context: A113296 A275462 A063744 * A096313 A346788 A230053
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Aug 22 2008
EXTENSIONS
Edited by N. J. A. Sloane, Aug 24 2008
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)