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.
%I A304101 #20 Jun 07 2018 22:12:01 %S A304101 1,2,2,2,3,2,4,3,2,4,4,3,5,2,4,4,4,6,3,6,5,2,4,4,4,6,4,7,6,3,6,6,5,8, %T A304101 2,4,4,4,6,4,7,6,4,7,7,6,9,3,6,6,6,10,5,9,8,2,4,4,4,6,4,7,6,4,7,7,6,9, %U A304101 4,7,7,7,11,6,11,9,3,6,6,6,10,6,11,10,5,9,9,8,12,2,4,4,4,6,4,7,6,4,7,7,6,9,4,7,7,7 %N A304101 Restricted growth sequence transform of A278222(A048679(n)). %C A304101 Positions of 2's is given by the positive Fibonacci numbers: 1, 2, 3, 5, 8, 13, 21, ..., that is, A000045(n) from n >= 2 onward. %C A304101 Positions of 3's is given by Lucas numbers larger than 3: 4, 7, 11, 18, ..., that is, A000032(n) from n >= 3 onward. %C A304101 Sequence allots a distinct value for each distinct multiset formed from the lengths of 1-runs in the binary representation of A048679(n). Compare to the scatter plot of A286622. %H A304101 Antti Karttunen, <a href="/A304101/b304101.txt">Table of n, a(n) for n = 0..65537</a> %o A304101 (PARI) %o A304101 rgs_transform(invec) = { my(om = Map(), outvec = vector(length(invec)), u=1); for(i=1, length(invec), if(mapisdefined(om,invec[i]), my(pp = mapget(om, invec[i])); outvec[i] = outvec[pp] , mapput(om,invec[i],i); outvec[i] = u; u++ )); outvec; }; %o A304101 A072649(n) = { my(m); if(n<1, 0, m=0; until(fibonacci(m)>n, m++); m-2); }; \\ From A072649 %o A304101 A003714(n) = { my(s=0,w); while(n>2, w = A072649(n); s += 2^(w-1); n -= fibonacci(w+1)); (s+n); } %o A304101 A106151(n) = if(n<=1, n, if(n%2, 1+(2*A106151((n-1)/2)), A106151(n>>valuation(n, 2))<<(valuation(n, 2)-1))); %o A304101 A048679(n) = if(!n,n,A106151(2*A003714(n))); %o A304101 A005940(n) = { my(p=2, t=1); n--; until(!n\=2, if((n%2), (t*=p), p=nextprime(p+1))); t }; %o A304101 A046523(n) = { my(f=vecsort(factor(n)[, 2], , 4), p); prod(i=1, #f, (p=nextprime(p+1))^f[i]); }; \\ From A046523 %o A304101 A278222(n) = A046523(A005940(1+n)); %o A304101 v304101 = rgs_transform(vector(1+up_to, n, A278222(A048679(n-1)))); %o A304101 A304101(n) = v304101[1+n]; %Y A304101 Cf. A000032, A000045, A003603, A007895, A035513, A048679, A278222, A304100, A304102, A304103, A304104, A304105. %Y A304101 Cf. also A286622 (compare the scatter-plots). %K A304101 nonn,look %O A304101 0,2 %A A304101 _Antti Karttunen_, May 13 2018