login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A152722 A prime based vector recursion: a(n)={Prime[n+2],-Prime[n+2]+1,...,-1,-1}. 0
-1, 1, -1, 7, -6, -1, 11, -10, -6, -1, 13, -12, -10, -6, -1, 17, -16, -12, -10, -6, -1, 19, -18, -16, -12, -10, -6, -1, 23, -22, -18, -16, -12, -10, -6, -1, 29, -28, -22, -18, -16, -12, -10, -6, -1, 31, -30, -28, -22, -18, -16, -12, -10, -6, -1, 37, -36, -30, -28, -22 (list; graph; refs; listen; history; internal format)
OFFSET

0,4

COMMENTS

Row sums are:

{-1, 0, 0, -6, -16, -28, -44, -62, -84, -112, -142,...}

FORMULA

a(n)={Prime[n+2],-Prime[n+2]+1,...,-1,-1}.

EXAMPLE

{-1},

{1, -1},

{7, -6, -1},

{11, -10, -6, -1},

{13, -12, -10, -6, -1},

{17, -16, -12, -10, -6, -1},

{19, -18, -16, -12, -10, -6, -1},

{23, -22, -18, -16, -12, -10, -6, -1},

{29, -28, -22, -18, -16, -12, -10, -6, -1},

{31, -30, -28, -22, -18, -16, -12, -10, -6, -1},

{37, -36, -30, -28, -22, -18, -16, -12, -10, -6, -1}

MATHEMATICA

b[0] = {-1}; b[1] = {1, -1};

b[n_] := b[n] = Join[{Prime[n + 2 ]}, {-Prime[n + 2] + 1}, Table[b[n - 1][[i]], {i, 2, Length[b[n - 1]]}]];

Table[b[n], {n, 0, 10}]; Flatten[%]

CROSSREFS

A152568, A027293

Sequence in context: A112252 A118321 A152755 * A100082 A152861 A198925

Adjacent sequences:  A152719 A152720 A152721 * A152723 A152724 A152725

KEYWORD

sign

AUTHOR

Roger L. Bagula and Alexander R. Povolotsky (rlbagulatftn(AT)yahoo.com), Dec 11 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 21:56 EST 2012. Contains 205860 sequences.