cp's OEIS Frontend

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.

A328589 Numbers n that are multiples of 6 and for which A257993(A276086(A276086(n))) is larger than A257993(n), where A276086 converts the primorial base expansion of n into its prime product form, and A257993 returns the index of the least prime not present in its argument.

This page as a plain text file.
%I A328589 #21 Oct 27 2019 17:31:39
%S A328589 240,270,300,330,360,390,630,660,690,720,750,780,810,1050,1080,1110,
%T A328589 1140,1170,1200,1230,1500,1530,1560,1590,1620,1650,1890,1920,1950,
%U A328589 1980,2010,2040,2070,2550,2580,2610,2640,2670,2700,2940,2970,3000,3030,3060,3090,3120,3360,3390,3420,3450,3480,3510,3540,3810,3840,3870,3900,3930,3960,4200
%N A328589 Numbers n that are multiples of 6 and for which A257993(A276086(A276086(n))) is larger than A257993(n), where A276086 converts the primorial base expansion of n into its prime product form, and A257993 returns the index of the least prime not present in its argument.
%C A328589 Multiples of six such that the least nondivisor prime of the original n is less than the least nondivisor prime of the number obtained after two iterations of A276086 is.
%C A328589 All terms are multiples of 5 (and thus of 30), because when applied to any number which is a multiple of 6, but not of 5 (and thus not a multiple of 30, so the primorial expansion ends with "x00", where x <> 0, and A257993(n) = 3), A276086 will yield a number of the form 30k+5 or 30k+25 (A084967) whose primorial expansion ends either as "...021" or as "...401" (with the least significant zero either in position 2 or 3), thus then A328578(n) = A257993(A276086(A276086(n))) is definitely not larger than 3, while A257993(6k) >= 3 for all k >= 1.
%H A328589 Antti Karttunen, <a href="/A328589/b328589.txt">Table of n, a(n) for n = 1..10000</a>
%H A328589 <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a>
%o A328589 (PARI)
%o A328589 A257993(n) = { for(i=1,oo,if(n%prime(i),return(i))); }
%o A328589 A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
%o A328589 A328578(n) = A257993(A276086(A276086(n)));
%o A328589 isA328589(n) = ((!(n%6))&&(A328578(n) > A257993(n)));
%Y A328589 Subsequence of A328588.
%Y A328589 Other multiples of 6 are either in A328586 or in A328587.
%Y A328589 Cf. A049345, A084967, A257993, A276086, A328578, A328585, A328588, A328590, A328762.
%K A328589 nonn
%O A328589 1,1
%A A328589 _Antti Karttunen_, Oct 21 2019