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

A214546
First differences of A140472.
7
1, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 8, -7, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 16, -15, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 8, -7, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 32, -31, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0
OFFSET
0,4
COMMENTS
a(n) = A140472(n+1) - A140472(n);
a(A016825(n)) = 0; a(A042965(n)) <> 0;
for n > 0: a(A008586(n)) < 0, a(A005843(n)) <= 0, a(A042968(n)) >= 0;
a(A004273(n)) > 0.
LINKS
PROG
(Haskell)
a214546 n = a214546_list !! n
a214546_list = zipWith (-) (tail a140472_list) a140472_list
CROSSREFS
Cf. A093879.
Sequence in context: A247288 A135221 A318686 * A255704 A191347 A106234
KEYWORD
sign
AUTHOR
Reinhard Zumkeller, Jul 20 2012
STATUS
approved