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!)
A358894 a(n) is the smallest centered n-gonal number with exactly n distinct prime factors. 3
460, 99905, 463326, 808208947, 23089262218, 12442607161209225, 53780356630, 700326051644920151, 46634399568693102, 45573558879962759570353 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
LINKS
Eric Weisstein's World of Mathematics, Centered Polygonal Number
Eric Weisstein's World of Mathematics, Distinct Prime Factors
EXAMPLE
a(3) = 460, because 460 is a centered triangular number with 3 distinct prime factors {2, 5, 23} and this is the smallest such number.
PROG
(PARI) a(n) = if(n<3, return()); for(k=1, oo, my(t=((n*k*(k+1))/2+1)); if(omega(t) == n, return(t))); \\ Daniel Suteu, Dec 05 2022
CROSSREFS
Sequence in context: A329292 A252535 A264242 * A107973 A227994 A142832
KEYWORD
nonn,more
AUTHOR
Ilya Gutkovskiy, Dec 05 2022
EXTENSIONS
a(8)-a(9) from Daniel Suteu, Dec 05 2022
a(10)-a(12) from Daniel Suteu, Dec 06 2022
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 May 6 08:45 EDT 2024. Contains 372292 sequences. (Running on oeis4.)