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

A075496
a(1)=1, a(n) = Sum_{k=1..n-1} max(a(k), a(n-k)).
2
1, 1, 2, 5, 14, 40, 118, 349, 1042, 3112, 9322, 27926, 83738, 251096, 753170, 2259161, 6777134, 20330360, 60990038, 182967002, 548897894, 1646684360, 4940043758, 14820103348, 44460282118, 133380762616, 400142204110, 1200426361234, 3601278832606, 10803835744648
OFFSET
1,3
LINKS
FORMULA
a(n) is asymptotic to c*3^n where c=0.05247353240352723607883446992217693404861703471190473058997502846657554868....
MAPLE
a:= proc(n) option remember; `if`(n=1, 1,
add(max(a(k), a(n-k)), k=1..n-1))
end:
seq(a(n), n=1..30); # Alois P. Heinz, Jan 08 2023
CROSSREFS
Cf. A075535.
Sequence in context: A126220 A136304 A190254 * A114177 A349413 A200438
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jan 11 2003
STATUS
approved