A368059 a(1)=3; for n>1, a(n) is the smallest positive integer not already used which has a factor sum in common with a(n-1).
3, 4, 6, 10, 12, 7, 15, 16, 9, 5, 8, 14, 18, 20, 11, 27, 32, 17, 45, 13, 24, 21, 25, 48, 28, 30, 22, 36, 19, 51, 64, 33, 40, 42, 52, 60, 31, 87, 112, 57, 72, 26, 44, 23, 63, 39, 55, 108, 38, 54, 50, 56, 29, 81, 65, 77, 80, 41, 117, 85, 96, 34, 66, 46, 84, 43, 123, 160, 69, 88, 70, 78, 90, 62
Offset: 1
Keywords
Examples
For n=2, 3 can only be factored as 1*3, which has a sum of 4. The next term cannot be 1 or 2 as they do not have a factor sum of 4, but 4 = 2*2 does, so a(2) = 4. For n=5, a(4)=10 has factor sums 7 and 11. The smallest unused number with one of those sums is a(5) = 12 = 3*4, sum of 7.
Links
- Neal Gersh Tolunsky, Table of n, a(n) for n = 1..10000
- Thomas Scheuerle, MATLAB Program.
- Thomas Scheuerle, Histogram of a(n)/n for the first 5000 values of this sequence.
Programs
-
MATLAB
% See Scheuerle link.
Comments