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!)
A080513 a(n) = round(n/2) + 1 = ceiling(n/2) + 1 = floor((n+1)/2) + 1. 4
1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Number of ON (black) cells in the n-th iteration of the "Rule 70" elementary cellular automaton starting with a single ON (black) cell.
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.
LINKS
Eric Weisstein's World of Mathematics, Elementary Cellular Automaton
FORMULA
From Colin Barker, Jan 14 2016: (Start)
a(n) = (2*n-(-1)^n+5)/4.
a(n) = a(n-1)+a(n-2)-a(n-3) for n>2.
G.f.: (1+x-x^2) / ((1-x)^2*(1+x)).
(End)
a(n) = 1 + A110654(n). - Philippe Deléham, Nov 23 2016
a(n) = A008619(n+1) = A110654(n+2) = A110654(n)+1 = A004526(n+3) = A140106(n+5); a(n+2) = a(n) + 1 for all n >= 0. - M. F. Hasler, Feb 14 2019
a(n) = a(n-1)*a(n-2) - Sum_{i=0..n-3} a(i). - Marc Morgenegg, Oct 04 2019
MATHEMATICA
rule=70; rows=20; ca=CellularAutomaton[rule, {{1}, 0}, rows-1, {All, All}]; (* Start with single black cell *) catri=Table[Take[ca[[k]], {rows-k+1, rows+k-1}], {k, 1, rows}]; (* Truncated list of each row *) Table[Total[catri[[k]]], {k, 1, rows}] (* Number of Black cells in stage n *)
PROG
(PARI) a(n) = (2*n-(-1)^n+5)/4 \\ Colin Barker, Jan 14 2016
(PARI) Vec((1+x-x^2)/((1-x)^2*(1+x)) + O(x^100)) \\ Colin Barker, Jan 14 2016
(PARI) A080513(n)=n\/2+1 \\ M. F. Hasler, Feb 14 2019
CROSSREFS
Sequence in context: A130472 A076938 A065033 * A004526 A140106 A123108
KEYWORD
nonn,easy
AUTHOR
Robert Price, Jan 04 2016
EXTENSIONS
Simpler definition from M. F. Hasler, Feb 14 2019
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 April 24 02:28 EDT 2024. Contains 371917 sequences. (Running on oeis4.)