login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A173093
a(1)=1, a(2)=3, a(n)=a(n-2)*a(n-1)-a(n-2).
6
1, 3, 2, 3, 4, 9, 32, 279, 8896, 2481705, 22077238784, 54789193873965015, 1209594115938395614939902976, 66272686526956073137307690185435702644419625
OFFSET
1,2
MATHEMATICA
a=1; b=3; lst={a, b}; Do[c=a*b-a; AppendTo[lst, c]; a=b; b=c, {n, 14}]; lst
RecurrenceTable[{a[1]==1, a[2]==3, a[n]==a[n-2]a[n-1]-a[n-2]}, a, {n, 20}] (* Harvey P. Dale, Feb 09 2014 *)
CROSSREFS
Sequence in context: A003559 A200599 A239947 * A236361 A227634 A064885
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 20 02:18 EDT 2024. Contains 376016 sequences. (Running on oeis4.)