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!)
A131565 Numbers n such that 3*n^2 + 5*n +1 is either a prime or a power of three multiplied with a prime. 0
2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 28, 30, 31, 33, 34, 35, 37, 38, 39, 40, 42, 44, 45, 47, 51, 52, 53, 55, 56, 58, 59, 61, 64, 65, 66, 69, 72, 76, 79, 81, 82, 84, 86, 87, 91, 95, 98, 100, 102, 103, 104, 105, 107, 108, 109, 113, 115, 116, 118 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
3*2^2 + 5*2 + 1 = 23, which is prime. Therefore 2 is in the sequence.
3*4^2 + 5*4 + 1 = 3*23, a prime multiplied by a power of 3. Hence 3 is in the sequence.
MATHEMATICA
a = {}; For[n = 1, n < 130, n++, m = 3*n^2 + 5*n + 1; If[PrimeQ[m], AppendTo[a, n]]; While[IntegerQ[m/3], m = m/3]; If[PrimeQ[m], AppendTo[a, n]]]; Union[a, a]
CROSSREFS
Sequence in context: A350425 A259627 A250475 * A039218 A076487 A317717
KEYWORD
nonn,less
AUTHOR
J. M. Bergot, Aug 27 2007
EXTENSIONS
Edited, corrected and extended by Stefan Steinerberger, Aug 29 2007
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 April 25 12:53 EDT 2024. Contains 371969 sequences. (Running on oeis4.)