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!)
A088027 Smallest square k such that k-1 is a squarefree number with n prime divisors. 1
4, 16, 196, 1156, 64516, 440896, 26173456, 340254916, 14809429636, 787326134596, 56199671262736, 3984666393117796, 468395620836767716, 9526636662047700196, 659973251187594258916, 205358215375529739638116 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,1

COMMENTS

Program for generating a(n) for large values of n is given is A088028.

LINKS

Table of n, a(n) for n=1..16.

EXAMPLE

a(4) = 1156 = 34^2 = 3*5*7*11 +1.

PROG

(PARI) a(n) = {i = 1; k = i^2; while (! issquarefree(k-1) || (omega(k-1) != n), i++; k = i^2; ); k; } \\ Michel Marcus, Apr 11 2014

CROSSREFS

Cf. A088028.

Sequence in context: A280468 A224802 A000513 * A271267 A333438 A232840

Adjacent sequences: A088024 A088025 A088026 * A088028 A088029 A088030

KEYWORD

nonn

AUTHOR

Amarnath Murthy, Sep 19 2003

EXTENSIONS

More terms from Ray Chandler, Oct 04 2003

Additional terms from Thomas Baruchel, Oct 11 2003

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 March 20 22:57 EDT 2023. Contains 361392 sequences. (Running on oeis4.)