The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A285399 Start with a single cell at coordinates (0, 0, 0), then iteratively subdivide the grid into 3 X 3 X 3 cells and remove the cells whose sum of modulo 2 coordinates is 0 or 2; a(n) is the number of cells after n iterations. 10
1, 13, 182, 2548, 35672, 499408, 6991712, 97883968, 1370375552, 19185257728, 268593608192, 3760310514688, 52644347205632, 737020860878848, 10318292052303872, 144456088732254208, 2022385242251558912, 28313393391521824768, 396387507481305546752 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Cell configuration converges to a fractal with dimension 2.402...
LINKS
Peter Karpov, InvMem, Item 26
FORMULA
a(0) = 1, a(1) = 13, a(n) = 14*a(n-1).
G.f.: (1-x)/(1-14*x).
a(n) = 13 * 14^(n-1) for n>0. - Colin Barker, Apr 23 2017
E.g.f.: (1 + 13*exp(14*x))/14. - G. C. Greubel, Dec 09 2021
MAPLE
A285399:=n->13*14^(n-1): 1, seq(A285399(n), n=1..30); # Wesley Ivan Hurt, Apr 23 2017
MATHEMATICA
{1}~Join~LinearRecurrence[{14}, {13}, 18]
PROG
(PARI) Vec((1-x) / (1-14*x) + O(x^20)) \\ Colin Barker, Apr 23 2017
(Sage) [1]+[13*14^(n-1) for n in (1..40)] # G. C. Greubel, Dec 09 2021
(Magma) [1] cat [13*14^(n-1): n in [1..40]]; // G. C. Greubel, Dec 09 2021
CROSSREFS
Sequence in context: A097260 A178303 A158548 * A297581 A268413 A274345
KEYWORD
nonn,easy
AUTHOR
Peter Karpov, Apr 23 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 May 23 18:59 EDT 2024. Contains 372765 sequences. (Running on oeis4.)