cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A226294 Period 2: repeat [6, 4].

Original entry on oeis.org

6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4, 6
Offset: 0

Views

Author

Richard R. Forberg, Jun 02 2013

Keywords

Comments

A two number repeating sequence for constructing a summation sequence from negative to positive infinity containing all primes except 2 and 5.
Essentially the same as A168428, A101432 and A010711.
NOTE: This sequence has a shift in the starting value at index 0 relative to A010711. It is used here for the purpose stated with positive and negative indices making the formula in A010711 non-applicable.
This infinitely repeating sequence, a(n), of two numbers (6,4) starting with a(0) = 6, allows for the creation of an infinite summation sequence, s(n), extending from negative to positive infinity, using the formula below in parallel with how the same is done in A226276 using a different repeating sequence. Letting "s(n+)" be the set positive s(n) values, and "s(n-)" be the absolute value of the set of negative s(n) values, the following applies:
s(n+) includes all numbers with last digits of 1 and 7.
s(n-) includes all numbers with last digits of 3 and 9.
Therefore, s(n) includes all primes (except 2 and 5) without duplication.
This is one of only two such repeating patterns that accomplish this goal relative to the primes, while excluding all numbers with a last digit of 5. The other is (8,4,4,4) but with a different split between which primes occur as positive vs. negative numbers. See A226276 for details. Both patterns have the same density of primes relative to all s(n), and both, presumably, have the same average density of primes as positive vs. negative values of s(n).

Examples

			s(1) = 7, s(2) = 11, s(3) = 17, s(4) = 21, s(5) = 27, s(6) = 31;
s(-1) = -3, s(-2) = -9, s(-3) = -13, s(-4) = -19, s(-5) = -23, s(-6) = -29;
		

Crossrefs

Programs

Formula

a(n) = 5+(-1)^n = 2*A176059(n).
To generate the summation sequence s(n), start with s(0) = 1, and a(0) = 6.
For positive values of s(n): s(n+1) = s(n) + a(n)
For negative values of s(n): s(n-1) = s(n) - a(n-1). n is negative here.
See example values for s(n) below, for both positive and negative indices.
G.f.: ( 6+4*x ) / ( (1-x)*(1+x) ). - R. J. Mathar, Jun 12 2013
a(n) = a(n-2) for n>1. - Wesley Ivan Hurt, Jul 18 2016
Showing 1-1 of 1 results.