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!)
A173098 a(1)=1, a(2)=2, a(n)=2*a(n-2)*a(n-1)-a(n-1). 2
1, 2, 2, 6, 18, 198, 6930, 2737350, 37936933650, 207693292716721350, 15758493330480878908260133650, 6545866736124132578837836330405530973356721350 (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-b; AppendTo[lst, c]; a=b; b=c, {n, 12}]; lst
RecurrenceTable[{a[1]==1, a[2]==2, a[n]==2a[n-2]a[n-1]-a[n-1]}, a, {n, 14}] (* Harvey P. Dale, Jan 27 2012 *)
CROSSREFS
Sequence in context: A176754 A365103 A357537 * A370836 A233113 A366731
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 July 24 03:05 EDT 2024. Contains 374575 sequences. (Running on oeis4.)