login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A122257 Characteristic function of Pierpont primes (A005109). 4
0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Pierpont Prime
FORMULA
a(n) = A010051(n) * A065333(n-1).
a(n) = if (n is prime) and (n-1 is 3-smooth) then 1 else 0.
a(n) = if n=1 then 0 else A122258(n) - A122258(n-1);
a(A122259(n)) = 0, a(A005109(n)) = 1.
MATHEMATICA
smooth3Q[n_] := n == 2^IntegerExponent[n, 2]*3^IntegerExponent[n, 3];
a[n_] := Boole[PrimeQ[n] && smooth3Q[n - 1]];
Table[a[n], {n, 1, 100}] (* Jean-François Alcover, Oct 16 2021 *)
PROG
(Scheme)
(define (A122257 n) (if (= 1 n) 0 (if (= 1 (A065333 (- n 1))) (A010051 n) 0)))
(define (A065333 n) (if (= 1 (A038502 (A000265 n))) 1 0))
;; Antti Karttunen, Dec 07 2017
CROSSREFS
Cf. A005109, A010051, A065333, A122258 (partial sums).
Sequence in context: A286484 A118247 A286487 * A332219 A227625 A373497
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Aug 29 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 9 20:04 EDT 2024. Contains 375044 sequences. (Running on oeis4.)