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

A262604
First difference of A252022.
3
1, 1, 1, 1, 5, -4, 5, -4, 5, 1, 1, 1, 5, -12, 13, -5, 6, -5, 13, -21, 31, -22, 13, -8, 1, 1, 7, -6, 7, 1, 1, 6, -14, 15, -6, 7, 1, 1, 5, -31, 41, -32, 23, -14, 15, -6, 7, 47, -71, 41, 31, -63, 23, 41, -55, 63, -71, 81, -72, 63, -57, 49, -48, 49, -42, 43, -42
OFFSET
1,5
COMMENTS
The graph of the sequence exhibits a kind of symmetry around the X-axis.
FORMULA
a(n) = A252022(n+1) - A252022(n) for any n>0.
PROG
(Haskell)
a262604 n = a262604_list !! (n-1)
a262604_list = zipWith (-) (tail a252022_list) a252022_list
-- Reinhard Zumkeller, Sep 27 2015
CROSSREFS
Cf. A252022.
Sequence in context: A131369 A122219 A093348 * A276500 A246060 A316327
KEYWORD
sign,look,base
AUTHOR
Paul Tek, Sep 26 2015
STATUS
approved