Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A164095

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
a(n) = 2*a(n-2) for n > 2; a(1) = 5, a(2) = 6.
(history; published version)
#18 by Ray Chandler at Fri Jun 30 01:03:39 EDT 2023
STATUS

editing

approved

#17 by Ray Chandler at Fri Jun 30 01:03:36 EDT 2023
LINKS

<a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (0, 2).

STATUS

approved

editing

#16 by Charles R Greathouse IV at Thu Sep 08 08:45:47 EDT 2022
PROG

(MAGMAMagma) [ n le 2 select n+4 else 2*Self(n-2): n in [1..40] ];

Discussion
Thu Sep 08
08:45
OEIS Server: https://oeis.org/edit/global/2944
#15 by Harvey P. Dale at Sat Aug 15 15:52:52 EDT 2020
STATUS

editing

approved

#14 by Harvey P. Dale at Sat Aug 15 15:52:48 EDT 2020
MATHEMATICA

LinearRecurrence[{0, 2}, {5, 6}, 50] (* or *) With[{nn=20}, Riffle[NestList[ 2#&, 5, nn], NestList[2#&, 6, nn]]] (* Harvey P. Dale, Aug 15 2020 *)

STATUS

approved

editing

#13 by Joerg Arndt at Tue Aug 27 03:28:58 EDT 2019
NAME

a(n) = 2*a(n-2) for n > 2; a(1) = 3, 5, a(2) = 56.

DATA

3, 5, 6, 10, 12, 20, 24, 40, 48, 80, 96, 160, 192, 320, 384, 640, 768, 1280, 1536, 2560, 3072, 5120, 6144, 10240, 12288, 20480, 24576, 40960, 49152, 81920, 98304, 163840, 196608, 327680, 393216, 655360, 786432, 1310720, 1572864, 2621440, 3145728

COMMENTS

Interleaving of A020714 and A007283 without initial term 3.

Partial sums are in A164096.

Interleaving of A020714 and A007283. The sequence comes from a bifurcation cascade into the parameter plane, exiting a chaotic window and going to another chaotic region in a system of two coupled logistic maps whose dynamical behaviour Binomial transform is A048655 without initial 1, second binomial transform is A161941 without initial 2, third binomial transform is A164037, fourth binomial transform is A161731 without initial 1, fifth binomial transform is A164038, sixth binomial transform is done in terms of their integer periodicitiesA164110.

REFERENCES

R. O. E. Bustos-Espinoza and G. M. Ramirez-Avila. Synchronization conditions on coupled maps using periodicities, Eur. Phys. J. Special Topics, 225 (2016), 2697-2705.

LINKS

Vincenzo Librandi, <a href="/A164095/b164095.txt">Table of n, a(n) for n = 1..1000</a>

FORMULA

A164095 with a new seeds.

a(n) = A070876(n)/3.

a(n) = (4-(-1)^n)*2^(1/4*(2*n-1+(-1)^n)).

G.f.: x*(5+6*x)/(1-2*x^2).

EXAMPLE

for n=3 the a(3)=6

for n=4 the a(4)=10

for n=5 the a(5)=12

for n=6 the a(6)=20

etc.

PROG

(MATLAB) [ n=50; a=zeros(n, 1); a(1)=3; a(2)=5;

for (MAGMA) [ n le 2 select n+4 else 2*Self(n=3-2): n, in [1..40] ];

a(n)= 2 * a(n-2);

end

a'

];

CROSSREFS
AUTHOR

Klaus Brockhaus, Aug 10 2009 ~~~

EXTENSIONS

We introduced new seeds for A164095.

STATUS

editing

approved

#12 by Roy Omar Edgar Bustos-Espinoza at Mon Aug 26 10:54:46 EDT 2019
NAME

a(n) = 2*a(n-2) for n > 2; a(1) = 5, 3, a(2) = 65.

DATA

3, 5, 6, 10, 12, 20, 24, 40, 48, 80, 96, 160, 192, 320, 384, 640, 768, 1280, 1536, 2560, 3072, 5120, 6144, 10240, 12288, 20480, 24576, 40960, 49152, 81920, 98304, 163840, 196608, 327680, 393216, 655360, 786432, 1310720, 1572864, 2621440, 3145728

COMMENTS

Interleaving of A020714 and A007283 without initial term 3. The sequence comes from a bifurcation cascade into the parameter plane, exiting a chaotic window and going to another chaotic region in a system of two coupled logistic maps whose dynamical behaviour is done in terms of their integer periodicities.

Partial sums are in A164096.

Binomial transform is A048655 without initial 1, second binomial transform is A161941 without initial 2, third binomial transform is A164037, fourth binomial transform is A161731 without initial 1, fifth binomial transform is A164038, sixth binomial transform is A164110.

REFERENCES

R. O. E. Bustos-Espinoza and G. M. Ramirez-Avila. Synchronization conditions on coupled maps using periodicities, Eur. Phys. J. Special Topics, 225 (2016), 2697-2705.

LINKS

Vincenzo Librandi, <a href="/A164095/b164095.txt">Table of n, a(n) for n = 1..1000</a>

FORMULA

a(n) = A070876(n)/3.

a(n) = (4-(-1)^n)*2^(1/4*(2*n-1+(-1)^n)).

G.f.: x*(5+6*x)/(1-2*x^2).

A164095 with a new seeds.

EXAMPLE

for n=3 the a(3)=6

for n=4 the a(4)=10

for n=5 the a(5)=12

for n=6 the a(6)=20

etc.

PROG

(MAGMA) [ n le 2 select n+4 else 2*Self(n-2): n in [1..40] ];

(MATLAB) [ n=50; a=zeros(n, 1); a(1)=3; a(2)=5;

for n=3:n,

a(n)= 2 * a(n-2);

end

a'

];

CROSSREFS
AUTHOR

Klaus Brockhaus, Aug 10 2009 ~~~

EXTENSIONS

We introduced new seeds for A164095.

STATUS

approved

editing

Discussion
Tue Aug 27
03:28
Joerg Arndt: This account will be blocked.  Reverting now.
#11 by Joerg Arndt at Thu Aug 22 07:59:30 EDT 2019
NAME

a(n) = 2*a(n-2) for n > 2; a(1) = 3, 5, a(2) = 56.

DATA

3, 5, 6, 10, 12, 20, 24, 40, 48, 80, 96, 160, 192, 320, 384, 640, 768, 1280, 1536, 2560, 3072, 5120, 6144, 10240, 12288, 20480, 24576, 40960, 49152, 81920, 98304, 163840, 196608, 327680, 393216, 655360, 786432, 1310720, 1572864, 2621440, 3145728

COMMENTS

Interleaving of A020714 and A007283 without initial term 3.

Partial sums are in A164096.

Interleaving of A020714 and A007283. The sequence comes from a bifurcation cascade into the parameter plane, exiting a chaotic window and going to another chaotic region in a system of two coupled logistic maps whose dynamical behavior Binomial transform is A048655 without initial 1, second binomial transform is A161941 without initial 2, third binomial transform is A164037, fourth binomial transform is A161731 without initial 1, fifth binomial transform is A164038, sixth binomial transform is done in terms of their integer periodicitiesA164110.

REFERENCES

R. O. E. Bustos-Espinoza and G. M. Ramirez-Avila. Synchronization conditions on coupled maps using periodicities, Eur. Phys. J. Special Topics, 225 (2016), 2697-2705.

LINKS

Vincenzo Librandi, <a href="/A164095/b164095.txt">Table of n, a(n) for n = 1..1000</a>

FORMULA

A164095 with a new seeds: a(1)=3, a(2)=5.

a(n) = A070876(n)/3.

a(n) = (4-(-1)^n)*2^(1/4*(2*n-1+(-1)^n)).

G.f.: x*(5+6*x)/(1-2*x^2).

EXAMPLE

for n=3 the a(3)=6

for n=4 the a(4)=10

for n=5 the a(5)=12

for n=6 the a(6)=20

etc.

PROG

(MATLAB) [ n=50; a=zeros(n, 1); a(1)=3; a(2)=5;

for (MAGMA) [ n le 2 select n+4 else 2*Self(n=3-2): n, in [1..40] ];

a(n)= 2 * a(n-2);

end

a' ]

CROSSREFS
AUTHOR

~~~

Klaus Brockhaus, Aug 10 2009

EXTENSIONS

We introduced new seeds for A164095.

STATUS

proposed

approved

#10 by Roy Omar Edgar Bustos-Espinoza at Thu Aug 22 07:28:55 EDT 2019
STATUS

editing

proposed

Discussion
Thu Aug 22
07:57
Joerg Arndt: This is NOT OK!
#9 by Roy Omar Edgar Bustos-Espinoza at Thu Aug 22 07:23:10 EDT 2019
NAME

a(n) = 2*a(n-2) for n > 2; a(1) = 5, 3, a(2) = 65.

DATA

3, 5, 6, 10, 12, 20, 24, 40, 48, 80, 96, 160, 192, 320, 384, 640, 768, 1280, 1536, 2560, 3072, 5120, 6144, 10240, 12288, 20480, 24576, 40960, 49152, 81920, 98304, 163840, 196608, 327680, 393216, 655360, 786432, 1310720, 1572864, 2621440, 3145728

COMMENTS

Interleaving of A020714 and A007283 without initial term 3. The sequence comes from a bifurcation cascade into the parameter plane, exiting a chaotic window and going to another chaotic region in a system of two coupled logistic maps whose dynamical behavior is done in terms of their integer periodicities.

Partial sums are in A164096.

Binomial transform is A048655 without initial 1, second binomial transform is A161941 without initial 2, third binomial transform is A164037, fourth binomial transform is A161731 without initial 1, fifth binomial transform is A164038, sixth binomial transform is A164110.

REFERENCES

R. O. E. Bustos-Espinoza and G. M. Ramirez-Avila. Synchronization conditions on coupled maps using periodicities, Eur. Phys. J. Special Topics, 225 (2016), 2697-2705.

LINKS

Vincenzo Librandi, <a href="/A164095/b164095.txt">Table of n, a(n) for n = 1..1000</a>

FORMULA

A164095 with a new seeds: a(n1) = A070876(n)/3, a(2)=5.

a(n) = (4-(-1)^n)*2^(1/4*(2*n-1+(-1)^n)).

G.f.: x*(5+6*x)/(1-2*x^2).

EXAMPLE

for n=3 the a(3)=6

for n=4 the a(4)=10

for n=5 the a(5)=12

for n=6 the a(6)=20

etc.

PROG

(MAGMA) [ n le 2 select n+4 else 2*Self(n-2): n in [1..40] ];

(MATLAB) [ n=50; a=zeros(n, 1); a(1)=3; a(2)=5;

for n=3:n,

a(n)= 2 * a(n-2);

end

a' ]

CROSSREFS
AUTHOR

Klaus Brockhaus, Aug 10 2009

~~~

EXTENSIONS

We introduced new seeds for A164095.

STATUS

approved

editing

Discussion
Thu Aug 22
07:28
Roy Omar Edgar Bustos-Espinoza: AUTHOR   Klaus Brockhaus, Aug 10 2009 
                 ~~~~