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.

A351226 Numbers k for which A276086(k) < k, where A276086 is the primorial base exp-function.

This page as a plain text file.
%I A351226 #7 Feb 05 2022 17:20:02
%S A351226 6,30,31,32,36,60,210,211,212,213,214,215,216,217,218,240,241,242,420,
%T A351226 421,422,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,
%U A351226 2322,2323,2324,2325,2328,2340,2341,2342,2343,2344,2345,2346,2347,2348,2352,2370,2371,2372,2520,2521,2522,2523,2524,2526,2527
%N A351226 Numbers k for which A276086(k) < k, where A276086 is the primorial base exp-function.
%H A351226 <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a>
%t A351226 Select[Range[2528], Block[{i, m, n = #, p}, m = i = 1; While[n > 0, p = Prime[i]; m *= p^Mod[n, p]; n = Quotient[n, p]; i++]; m < #] &] (* _Michael De Vlieger_, Feb 05 2022 *)
%o A351226 (PARI)
%o A351226 A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
%o A351226 isA351226(n) = (A276086(n)<n);
%Y A351226 Cf. A002110 (subsequence from its third term 6 onward), A276086, A351227 (complement).
%Y A351226 Positions of negative terms in A351225, positions of zeros in A351089.
%K A351226 nonn,base
%O A351226 1,1
%A A351226 _Antti Karttunen_, Feb 05 2022