[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A128485
a(1)=a(2)=a(3)=1; for n > 3, a(n) = lcm(a(n-1) + a(n-2), a(n-3)).
2
1, 1, 1, 2, 3, 5, 8, 39, 235, 1096, 51909, 2491235, 348410728, 6071656665789, 15126791566796828495, 1317584644380565684408069688, 7999921680639175567165604204659004361387
OFFSET
1,4
LINKS
MAPLE
a[1]:=1: a[2]:=1: a[3]:=1: for n from 4 to 18 do a[n]:=lcm(a[n-1]+a[n-2], a[n-3]) od: seq(a[n], n=1..18); # Emeric Deutsch, May 22 2007
CROSSREFS
Sequence in context: A041008 A041569 A268480 * A042471 A041871 A061249
KEYWORD
nonn
AUTHOR
Leroy Quet, May 07 2007
EXTENSIONS
More terms from Emeric Deutsch, May 22 2007
STATUS
approved