A273099 Successive integers produced by Conway's PRIMEGAME, starting with 12 rather than 2.
12, 90, 675, 37125, 32625, 86625, 76125, 202125, 177625, 471625, 557375, 104125, 95550, 17850, 16380, 3060, 2808, 2376, 2088, 5544, 4872, 12936, 11368, 30184, 35672, 6664, 392, 2940, 22050, 165375, 23625, 3375, 185625, 163125, 433125, 380625, 1010625, 888125, 2358125, 2786875
Offset: 1
Examples
Multiply 12 by 15/2 to obtain 90. Then for 90, we can multiply 90 by 15/2 also to obtain 675.
Links
- Alonso del Arte, Table of n, a(n) for n = 1..250
Programs
-
Mathematica
(* First run the program for A203907 to define conwayProc *) NestList[conwayProc, 12, 50]
Comments