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

A309560
a(1) = a(2) = 1, a(3) = 2, a(4) = 3, a(5) = 5, a(6) = a(7) = 6, a(8) = 7; a(n) = a(n-a(n-1)) + a(n-a(n-2)) + a(n-a(n-3)) + a(n-a(n-4)) for n > 8.
1
1, 1, 2, 3, 5, 6, 6, 7, 8, 9, 11, 11, 10, 12, 13, 16, 15, 14, 16, 17, 20, 19, 17, 20, 23, 22, 23, 23, 24, 25, 26, 27, 27, 27, 29, 30, 31, 32, 30, 33, 35, 34, 34, 37, 38, 37, 36, 42, 38, 40, 42, 41, 45, 41, 43, 47, 48, 48, 49, 43, 45, 53, 52, 58, 44, 48, 54, 58
OFFSET
1,3
COMMENTS
This sequence is well defined for n = 1..1000000000; however, it is not known if this sequence is defined for all positive n.
EXAMPLE
a(10) = a(10-a(9)) + a(10-a(8)) + a(10-a(7)) + a(10-a(6)) = a(10-8) + a(10-7) + a(10-6) + a(10-6) = a(2) + a(3) + a(4) + a(4) = 1 + 2 + 3 + 3 = 9.
PROG
(PARI) a = vector(68); a[1] = a[2] = 1; a[3] = 2; a[4] = 3; a[5] = 5; a[6] = a[7] = 6; a[8] = 7; for (n=9, #a, a[n] = a[n-a[n-1]] + a[n-a[n-2]] + a[n-a[n-3]] + a[n-a[n-4]]); print (a)
(Magma) I:=[1, 1, 2, 3, 5, 6, 6, 7]; [n le 8 select I[n] else Self(n-Self(n-1))+Self(n-Self(n-2))+Self(n-Self(n-3)) + Self(n-Self(n-4)): n in [1..70]]; // Marius A. Burtea, Aug 07 2019
CROSSREFS
Sequence in context: A165089 A165083 A165085 * A128054 A175081 A023834
KEYWORD
nonn,look
AUTHOR
Altug Alkan and Rémy Sigrist, Aug 07 2019
STATUS
approved