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 A318612 #4 Sep 02 2018 08:20:54 %S A318612 1,2,3,4,5,7,8,9,11,16,17,19,23,25,27,31,32,36,49,53,59,64,67,72,81, %T A318612 83,97,100,103,108,121,125,127,128,131,144,151,196,200,216,225,227, %U A318612 241,243,256,277,288,289,311,324,331,343,359,361,392,400,419,431,432 %N A318612 Matula-Goebel numbers of powerful rooted trees. %C A318612 A prime index of n is a number m such that prime(m) divides n. A positive integer n is a Matula-Goebel number of a powerful rooted tree iff either n = 1 or n is a prime number whose prime index is a Matula-Goebel number of a powerful rooted tree or n is a powerful number (meaning its prime multiplicities are all greater than 1) whose prime indices are all Matula-Goebel numbers of powerful rooted trees. %e A318612 The sequence of all powerful rooted trees together with their Matula-Goebel numbers begins: %e A318612 1: o %e A318612 2: (o) %e A318612 3: ((o)) %e A318612 4: (oo) %e A318612 5: (((o))) %e A318612 7: ((oo)) %e A318612 8: (ooo) %e A318612 9: ((o)(o)) %e A318612 11: ((((o)))) %e A318612 16: (oooo) %e A318612 17: (((oo))) %e A318612 19: ((ooo)) %e A318612 23: (((o)(o))) %e A318612 25: (((o))((o))) %e A318612 27: ((o)(o)(o)) %e A318612 31: (((((o))))) %t A318612 powgoQ[n_]:=Or[n==1,If[PrimeQ[n],powgoQ[PrimePi[n]],And[Min@@FactorInteger[n][[All,2]]>1,And@@powgoQ/@PrimePi/@FactorInteger[n][[All,1]]]]]; %t A318612 Select[Range[1000],powgoQ] %Y A318612 Complement of A317719. %Y A318612 Cf. A000081, A001694, A061775, A111299, A214577, A276625, A303431, A317102, A317705, A317707. %K A318612 nonn %O A318612 1,2 %A A318612 _Gus Wiseman_, Aug 30 2018