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

%I #4 Mar 31 2012 10:22:32

%S 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,

%T 37,38,39,40,42,44,45,47,51,52,53,55,56,58,59,61,64,65,66,69,72,76,79,

%U 81,82,84,86,87,91,95,98,100,102,103,104,105,107,108,109,113,115,116,118

%N Numbers n such that 3*n^2 + 5*n +1 is either a prime or a power of three multiplied with a prime.

%e 3*2^2 + 5*2 + 1 = 23, which is prime. Therefore 2 is in the sequence.

%e 3*4^2 + 5*4 + 1 = 3*23, a prime multiplied by a power of 3. Hence 3 is in the sequence.

%t 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]

%K nonn,less

%O 1,1

%A _J. M. Bergot_, Aug 27 2007

%E Edited, corrected and extended by _Stefan Steinerberger_, Aug 29 2007

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 19 02:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)