A328632 Numbers k such that A276086(k) == 1 (mod 6), where A276086 is the primorial base exp-function.
0, 12, 24, 30, 42, 54, 60, 72, 84, 90, 102, 114, 120, 132, 144, 150, 162, 174, 180, 192, 204, 216, 228, 246, 258, 276, 288, 306, 318, 336, 348, 366, 378, 396, 408, 420, 432, 444, 450, 462, 474, 480, 492, 504, 510, 522, 534, 540, 552, 564, 570, 582, 594, 600, 612, 624, 636, 648, 666, 678, 696, 708, 726, 738, 756, 768, 786, 798, 816
Offset: 1
Keywords
Links
Crossrefs
Programs
-
PARI
A257993(n) = { for(i=1,oo,if(n%prime(i),return(i))); } A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); }; A328578(n) = A257993(A276086(A276086(n))); isA328632(n) = (2==A328578(n));
-
PARI
isA326832(n) = A358841(n); A358841(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (1==(m%6)); }; \\ Antti Karttunen, Dec 12 2022
Formula
{k | A358840(k) == 1}. - Antti Karttunen, Dec 02 2022
Extensions
Definition replaced with a simpler one and the original definition moved to the comments section by Antti Karttunen, Dec 03 2022
Comments