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!)
A067016 Start with a(0)=1, a(1)=4, a(2)=3, a(3)=2; for n>=3, a(n+1) = max_i (a(i)+a(n-i)). 3
1, 4, 3, 2, 7, 8, 11, 12, 15, 16, 19, 20, 23, 24, 27, 28, 31, 32, 35, 36, 39, 40, 43, 44, 47, 48, 51, 52, 55, 56, 59, 60, 63, 64, 67, 68, 71, 72, 75, 76, 79, 80, 83, 84, 87, 88, 91, 92, 95, 96, 99, 100, 103, 104, 107, 108, 111, 112, 115, 116, 119, 120, 123, 124, 127, 128 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, E27.
LINKS
FORMULA
First differences are ultimately periodic.
Conjecture: a(n) = (-3+(-1)^n+4*n)/2 for n>3. G.f.: -(2*x^6 -2*x^5 -6*x^4 +4*x^3 +2*x^2 -3*x -1) / ((x -1)^2*(x +1)). - Colin Barker, Apr 01 2013
PROG
(Haskell)
a067016 n = a067016_list !! n
a067016_list = [1, 4, 3, 2] ++ f [2, 3, 4, 1] where
f xs = maxi : f (maxi : xs) where
maxi = maximum $ zipWith (+) xs (reverse xs)
-- Reinhard Zumkeller, May 05 2012
CROSSREFS
Sequence in context: A194758 A074066 A307648 * A022295 A371510 A258415
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Feb 17 2002
EXTENSIONS
More terms from John W. Layman, Feb 20 2002
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 19 13:29 EDT 2024. Contains 374394 sequences. (Running on oeis4.)