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!)
A173097 a(1)=1, a(2)=2, a(n)=2*a(n-2)*a(n-1)-a(n-2). 3
1, 2, 3, 10, 57, 1130, 128763, 291003250, 74940902830737, 43616092563357042787250, 6537258709293941644669222566000575763, 570259361950353096439107826720562074995499493885695588056250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
a=1; b=2; lst={a, b}; Do[c=2*a*b-a; AppendTo[lst, c]; a=b; b=c, {n, 11}]; lst
RecurrenceTable[{a[1]==1, a[2]==2, a[n]==2a[n-2]a[n-1]-a[n-2]}, a, {n, 15}] (* Harvey P. Dale, Sep 10 2016 *)
CROSSREFS
Sequence in context: A181927 A066526 A093856 * A088221 A206296 A124923
KEYWORD
nonn
AUTHOR
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)