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!)
A283451 a(n) = Sum_{k=1..n} (-1)^k * A005185(k). 1
-1, 0, -2, 1, -2, 2, -3, 2, -4, 2, -4, 4, -4, 4, -6, 3, -7, 4, -7, 5, -7, 5, -7, 9, -5, 9, -7, 9, -7, 9, -11, 6, -11, 9, -12, 7, -13, 9, -12, 10, -13, 10, -14, 10, -14, 10, -14, 18, -6, 19, -11, 17, -9, 21, -9, 19, -13, 17, -15, 17, -15, 17, -23, 10, -21, 17, -18, 15, -24, 16, -21 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
a(7) = -3 because -1 + 1 - 2 + 3 - 3 + 4 - 5 = -3.
PROG
(PARI) a=vector(1000); a[1]=a[2]=1; for(n=3, #a, a[n]=a[n-a[n-1]]+a[n-a[n-2]]); va = vector(#a, n, sum(k=1, n, (-1)^(k)*a[k]))
CROSSREFS
Sequence in context: A060426 A260412 A360566 * A372970 A172245 A351005
KEYWORD
sign,look
AUTHOR
Altug Alkan, Mar 07 2017
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 10 01:34 EDT 2024. Contains 374191 sequences. (Running on oeis4.)