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!)
A309430 a(n) = a(n-a(n-1)) + a(n-a(n-4)), with a(n) = ceiling(2*n/3) for n <= 7. 0
1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 7, 8, 9, 9, 10, 10, 11, 11, 12, 13, 13, 13, 14, 14, 15, 16, 16, 17, 17, 18, 19, 19, 19, 20, 20, 21, 21, 22, 23, 23, 24, 24, 25, 25, 26, 26, 26, 27, 27, 28, 29, 29, 30, 30, 31, 31, 32, 33, 33, 33, 34, 34, 35, 36, 36, 37, 37, 38, 38, 38, 39, 39, 40, 41, 41, 41, 42, 42, 43, 44, 44 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A slow solution to Hofstadter V recurrence.
Numbers k such that a(k) < A063882(k) are 1654, 1721, 1925, ...
LINKS
FORMULA
a(n+1) - a(n) = 0 or 1 for all n >= 1.
PROG
(PARI) q=vector(100); for(n=1, 7, q[n]=ceil(2*n/3)); for(n=8, #q, q[n]=q[n-q[n-1]] +q[n-q[n-4]]); q
CROSSREFS
Sequence in context: A077773 A308754 A339187 * A076370 A112318 A367069
KEYWORD
nonn,easy
AUTHOR
Altug Alkan, Aug 01 2019
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 21 06:08 EDT 2024. Contains 374463 sequences. (Running on oeis4.)