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!)
A244476 6th-largest term in n-th row of Stern's diatomic triangle A002487. 5
2, 8, 15, 26, 45, 75, 121, 199, 322, 542, 877, 1427, 2309, 3739, 6050, 9790, 15841, 25632, 41473, 67105, 108578, 175683, 284261, 459944, 744205, 1204149, 1948354, 3152503, 5100857, 8253360 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,1
LINKS
Jennifer Lansing, Largest Values for the Stern Sequence, Journal of Integer Sequences, Vol. 17 (2014), Article 14.7.5.
PROG
(Python)
from functools import reduce
from itertools import product
def A244476(n): return sorted(set(sum(reduce(lambda x, y:(x[0], x[0]+x[1]) if y else (x[0]+x[1], x[1]), k, (1, 0))) for k in product((False, True), repeat=n)), reverse=True)[5] # Chai Wah Wu, Jun 19 2022
CROSSREFS
Sequence in context: A133230 A318242 A318272 * A292202 A189952 A077598
KEYWORD
nonn,more
AUTHOR
N. J. A. Sloane, Jul 01 2014
EXTENSIONS
a(24)-a(33) from Chai Wah Wu, Jun 19 2022
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)