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!)
A365326 a(n) is the smallest positive number k such that k^2 - 1 and k^2 + 1 each have exactly n distinct prime divisors. 0
2, 5, 13, 83, 463, 4217, 169333, 2273237, 23239523, 512974197, 5572561567 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) >= max(A219017(n), A180278(n)). - Daniel Suteu, Sep 03 2023
PROG
(PARI) isok(k, n) = (omega(k^2-1)==n) && (omega(k^2+1)==n);
a(n) = my(k=2); while (!isok(k, n), k++); k; \\ Michel Marcus, Sep 03 2023
CROSSREFS
Cf. A088075 (with k instead of k^2).
Sequence in context: A349735 A081650 A092262 * A096280 A236395 A032015
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(9)-a(11) from Amiram Eldar, Sep 03 2023
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 12 06:47 EDT 2024. Contains 372432 sequences. (Running on oeis4.)