A381464 Lexicographically earliest positive integer sequence satisfying a(n) = a(a(n))/n.
1, 3, 6, 5, 20, 18, 8, 56, 10, 90, 12, 132, 14, 182, 16, 240, 19, 108, 323, 100, 22, 462, 24, 552, 26, 650, 28, 756, 30, 870, 32, 992, 34, 1122, 36, 1260, 38, 1406, 40, 1560, 42, 1722, 44, 1892, 46, 2070, 48, 2256, 50, 2450, 52, 2652, 54, 2862, 57, 448, 3135, 59, 3422, 61, 3660, 63, 3906, 65, 4160
Offset: 1
Links
- Thomas Scheuerle, Table of n, a(n) for n = 1..5000
- Thomas Scheuerle, Scatter plot log(a(n)/n^2) for n = 1..800.
Programs
-
PARI
listA(max_n) = {my(v=[1, 0], t=1); for(k=2, max_n, if(v[k]==0, t=1; if(k+t<#v, while(v[k+t]>0, t++)); v[k]=k+t); v=concat(v, vector(max(0, v[k]+1-#v))); if(v[v[k]]>0, print("The conjecture that a single forward check is sufficient failed at:", k)); v[v[k]]=k*v[k]); v[1..max_n]}
Comments