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

A081827
Successive differences of Hofstadter Q-sequence.
7
0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 2, 0, 0, 2, -1, 1, 1, 0, 1, 0, 0, 0, 4, -2, 0, 2, 0, 0, 0, 4, -3, 0, 3, 1, -2, 1, 2, -1, 1, 1, 0, 1, 0, 0, 0, 0, 8, -8, 1, 5, -2, -2, 4, 0, -2, 4, -2, 2, 0, 0, 0, 8, -7, -2, 7, -3, -2, 6, 1, -3, 1, 2, -1, 1, -1, 3, -2, 1, 2, 1, -1, 0, 3, -2, 1, 2, 0, -1, 2, 0, 0, 0, 0, 0, 16, -23, 11, 2, 2
OFFSET
1,11
COMMENTS
a(A081829(n))<0; a(A081828(n))=0; a(A081830(n))>0; a(A194626(n))=1. [Reinhard Zumkeller, Sep 15 2011]
LINKS
FORMULA
a(n)=A005185(n+1)-A005185(n).
PROG
(Haskell)
a081827 n = a081827_list !! (n-1)
a081827_list = zipWith (-) (tail a005185_list) a005185_list
b081827 = bFile "A081827" a081827_list 1 10000 -- (0.34 secs)
-- Reinhard Zumkeller, Sep 15 2011
CROSSREFS
Sequence in context: A029304 A030202 A159818 * A100286 A280912 A332662
KEYWORD
sign,look
AUTHOR
Benoit Cloitre, Apr 10 2003
STATUS
approved