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!)
A129927 3-almost prime octagonal numbers. 1
8, 645, 833, 1045, 1281, 1825, 2465, 2821, 3201, 3605, 4961, 7701, 8965, 12545, 15841, 17633, 18565, 20501, 23585, 24661, 25761, 26885, 28033, 30401, 34133, 36741, 45141, 51221, 52801, 57685, 59361, 62785, 66305, 68101, 71765, 73633 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
A000567 INTERSECT A014612. - R. J. Mathar, Jan 27 2009
MAPLE
A000567 := proc(n) n*(3*n-2) ; end: isA014612 := proc(n) RETURN( numtheory[bigomega](n) = 3) ; end: for n from 1 to 300 do q := A000567(n) ; if isA014612(q) then printf("%d, ", q) ; fi; od: # R. J. Mathar, Jan 27 2009
MATHEMATICA
Select[Table[n(3n-2), {n, 200}], PrimeOmega[#]==3&] (* Harvey P. Dale, May 31 2016 *)
PROG
(PARI) issemi(n)=bigomega(n)==2
list(lim)=my(v=List(), t, n=1); while((t=n*(3*n-2))<=lim, if((isprime(n) && issemi(3*n-2)) || (isprime(3*n-2) && issemi(n)), listput(v, t)); n++); Vec(v) \\ Charles R Greathouse IV, Feb 05 2017
CROSSREFS
Sequence in context: A083942 A274588 A027877 * A196800 A196588 A197045
KEYWORD
nonn
AUTHOR
Giovanni Teofilatto, Jun 06 2007
EXTENSIONS
Corrected and extended by R. J. Mathar, Jan 27 2009
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 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)