A279944 Number of positions in the free pure symmetric multifunction in one symbol with j-number n.
1, 3, 5, 5, 7, 7, 9, 4, 7, 9, 11, 6, 9, 11, 13, 7, 8, 11, 13, 15, 9, 10, 13, 15, 9, 17, 6, 11, 12, 15, 17, 6, 11, 19, 8, 9, 13, 14, 17, 19, 8, 13, 21, 10, 11, 15, 16, 19, 11, 21, 10, 15, 23, 12, 13, 17, 18, 21, 13, 23, 12, 17, 25, 7, 14, 15, 19, 20, 23, 15, 25, 14, 19, 27, 9, 16, 17, 21, 22, 25, 9, 17, 27, 16, 21, 29, 11, 18, 19, 23, 24, 27, 11, 19, 29, 18, 23, 31, 13, 11
Offset: 1
Keywords
Examples
The first 20 free pure symmetric multifunctions in x are: j(1) = j(1) = x j(2) = j(1)[j(1)] = x[x] j(3) = j(2)[j(1)] = x[x][x] j(4) = j(1)[j(2)] = x[x[x]] j(5) = j(3)[j(1)] = x[x][x][x] j(6) = j(4)[j(1)] = x[x[x]][x] j(7) = j(5)[j(1)] = x[x][x][x][x] j(8) = j(1)[j(1),j(1)] = x[x,x] j(9) = j(2)[j(2)] = x[x][x[x]] j(10) = j(6)[j(1)] = x[x[x]][x][x] j(11) = j(7)[j(1)] = x[x][x][x][x][x] j(12) = j(8)[j(1)] = x[x,x][x] j(13) = j(9)[j(1)] = x[x][x[x]][x] j(14) = j(10)[j(1)] = x[x[x]][x][x][x] j(15) = j(11)[j(1)] = x[x][x][x][x][x][x] j(16) = j(1)[j(3)] = x[x[x][x]] j(17) = j(12)[j(1)] = x[x,x][x][x] j(18) = j(13)[j(1)] = x[x][x[x]][x][x] j(19) = j(14)[j(1)] = x[x[x]][x][x][x][x] j(20) = j(15)[j(1)] = x[x][x][x][x][x][x][x].
Crossrefs
Programs
-
Mathematica
nn=100; radQ[n_]:=If[n===1,False,SameQ[GCD@@FactorInteger[n][[All,2]],1]]; rad[n_]:=rad[n]=If[n===0,1,NestWhile[#+1&,rad[n-1]+1,Not[radQ[#]]&]]; Set@@@Array[radPi[rad[#]]==#&,nn]; jfac[n_]:=With[{g=GCD@@FactorInteger[n+1][[All,2]]},JIX[radPi[Power[n+1,1/g]],Flatten[Cases[FactorInteger[g+1],{p_,k_}:>ConstantArray[PrimePi[p],k]]]]]; diwt[n_]:=If[n===1,1,Apply[1+diwt[#1]+Total[diwt/@#2]&,jfac[n-1]]]; Array[diwt,nn]
Comments