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 A334217 #7 Apr 20 2020 09:55:25 %S A334217 1,1,2,1,3,1,2,4,1,5,1,6,1,7,1,2,8,1,3,9,1,10,1,11,1,2,12,1,13,1,14,1, %T A334217 15,1,2,4,16,1,17,1,3,18,1,19,1,2,20,1,21,1,22,1,23,1,2,24,1,5,25,1, %U A334217 26,1,3,27,1,2,28,1,29,1,30,1,31,1,2,4,32,1,33 %N A334217 Irregular table T(n, k) read by rows, n > 0 and k = 1..A334216(n); n-th row corresponds to distinct terms of n-th row of A334215, in ascending order. %F A334217 T(n, 1) = 1. %F A334217 T(n, 2) = A261969(n) for any n > 1. %F A334217 T(n, A334216(n)-1) = A000188(n) for any n > 1. %F A334217 T(n, A334216(n)) = n. %e A334217 The first rows are: %e A334217 n n-th row %e A334217 -- ------------- %e A334217 1 [1] %e A334217 2 [1, 2] %e A334217 3 [1, 3] %e A334217 4 [1, 2, 4] %e A334217 5 [1, 5] %e A334217 6 [1, 6] %e A334217 7 [1, 7] %e A334217 8 [1, 2, 8] %e A334217 9 [1, 3, 9] %e A334217 10 [1, 10] %e A334217 11 [1, 11] %e A334217 12 [1, 2, 12] %e A334217 13 [1, 13] %e A334217 14 [1, 14] %e A334217 15 [1, 15] %e A334217 16 [1, 2, 4, 16] %o A334217 (PARI) row(n) = { my (f=factor(n)); Set(apply (k -> prod (i=1, #f~, f[i,1]^(f[i,2]\k)), [1..1+if (n==1, 0, vecmax(f[,2]~))])) } %Y A334217 Cf. A000188, A261969, A334215, A334216. %K A334217 nonn,tabf %O A334217 1,3 %A A334217 _Rémy Sigrist_, Apr 19 2020