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!)
A153290 Designed symmetrical sequence with 2*3^n row sum and term: row(n)=3^n; f(n,m) = Floor[(m/Prime[n])*row(n)/2]. 0
2, 3, 3, 2, 14, 2, 2, 25, 25, 2, 2, 10, 138, 10, 2, 2, 22, 219, 219, 22, 2, 2, 56, 112, 1118, 112, 56, 2, 2, 128, 256, 1801, 1801, 256, 128, 2, 2, 344, 690, 1034, 8982, 1034, 690, 344, 2, 2, 854, 1710, 2566, 14551, 14551, 2566, 1710, 854, 2, 2, 2036, 4072, 6108 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
This kind of 2*3^n row sum sequence is an effort to get the Sierpinski carpet scale three
level of symmetry into a triangular/ binomial like sequence.
LINKS
FORMULA
row(n)=3^n;
f(n,m) = Floor[(m/Prime[n])*row(n)/2].
EXAMPLE
{2},
{3, 3},
{2, 14, 2},
{2, 25, 25, 2},
{2, 10, 138, 10, 2},
{2, 22, 219, 219, 22, 2},
{2, 56, 112, 1118, 112, 56, 2},
{2, 128, 256, 1801, 1801, 256, 128, 2},
{2, 344, 690, 1034, 8982, 1034, 690, 344, 2},
{2, 854, 1710, 2566, 14551, 14551, 2566, 1710, 854, 2},
{2, 2036, 4072, 6108, 8144, 77374, 8144, 6108, 4072, 2036, 2}
MATHEMATICA
Clear[v, n, row, f]; row[n_] = 3^n;
f[n_, m_] = Floor[(m/Prime[n])*row[n]/2]; v[0] = {1}; v[1] = {3/2, 3/2};
v[n_] := v[n] = If[Mod[n, 2] == 0, Join[{1}, Table[ f[n, m], {m, 1, Floor[n/2] - 1}], {row[n] - 2*Sum[ f[n, m], {m, 1, Floor[n/2] - 1}] - 2}, Table[ f[n, m], {m, Floor[n/2] - 1, 1, -1}], {1}],
Join[{1}, Table[ f[n, m], {m, 1, Floor[n/2] - 1}], {row[n]/2 - Sum[ f[n, m], {m, 1, Floor[n/2] - 1}] - 1, row[n]/2 - Sum[ f[n, m], {m, 1, Floor[n/2] - 1}] - 1}, Table[ f[n, m], {m, Floor[n/2] - 1, 1, -1}], {1}]];
Table[FullSimplify[Floor[2*v[n]]], {n, 0, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A175393 A184829 A338307 * A153516 A153311 A153312
KEYWORD
nonn,uned,tabl
AUTHOR
Roger L. Bagula, Dec 23 2008
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 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)