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”).

A225505
a(n) = triangular(a(n-1)+a(n-2)) if n > 1, else a(n) = n.
0
0, 1, 1, 3, 10, 91, 5151, 13741903, 94490753712985, 4464252567106907867941273716, 9964775491460730298984873904585383048580645394630925051
OFFSET
0,4
PROG
(Python)
prpr, prev = 0, 1
for i in range(1, 17):
print(prpr, end=', ')
n = prpr+prev
cur = n*(n+1)//2
prpr, prev = prev, cur
CROSSREFS
Sequence in context: A224774 A034792 A135457 * A073733 A005205 A216450
KEYWORD
nonn,changed
AUTHOR
Alex Ratushnyak, May 09 2013
STATUS
approved

  NODES
COMMUNITY 1
INTERN 1