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.

A190894 Auxiliary c(n) sequence used to prove some properties about Rowland's sequence. c(n) has the following recursive definition: c(1) = 5, c_(n+1) = c(n) + lfp(c(n)) - 1, where lpf(.) denotes the lowest prime factor of a number.

Original entry on oeis.org

5, 9, 11, 21, 23, 45, 47, 93, 95, 99, 101, 201, 203, 209, 219, 221, 233, 465, 467, 933, 935, 939, 941, 1881, 1883, 1889, 3777, 3779, 7557, 7559, 15117, 15119, 15131, 30261, 30263, 30315, 30317, 30323, 60645, 60647, 121293, 121295, 121299, 121301, 121401
Offset: 1

Views

Author

Keywords

Comments

This sequence is matched with r(n)=A190895(n). Rowland's sequence (A106108) can be easily described in terms of c(n) and r(n). Also, they can be used to prove easily that the difference between two consecutive terms is always 1 or a prime.
This sequence is related to Rowland's sequence (A106108) with initial condition a(1)=7. For any other odd initial condition a(1) greater than 3, there is an analog c(n) sequence, with c(1) = a(1) - 2.
Sequence r(n) satisfies 2r(n) - 1 = c(n), for any n>1.
For further information, see the references.

Examples

			For n=2, c(n) = 5 + lpf(5) - 1 = 5 + 5 - 1 = 9
For n=3, c(n) = 9 + lfp(9) - 1 = 9 + 3 - 1 = 11
		

Crossrefs

Programs

  • Mathematica
    NestList[#+FactorInteger[#][[1,1]]-1&,5,50] (* Harvey P. Dale, Jun 10 2016 *)

Formula

c(1) = 5; c(n+1) = c(n) + lfp(c(n)) - 1.