The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A092206 Positive integers that are not of the form n^2 or 3n^2. 5
2, 5, 6, 7, 8, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Values of n such that Q(sqrt(-n)) has 2 units.
A214295(a(n)) = 0. - Reinhard Zumkeller, Jul 12 2012
LINKS
Eric Weisstein's World of Mathematics, Unit
MATHEMATICA
Select[ Range[100], Not[ IntegerQ[ Sqrt[#] ] || IntegerQ[ Sqrt[#/3] ] ]&] (* Jean-François Alcover, Oct 30 2012 *)
PROG
(Haskell)
a092206 n = a092206_list !! (n-1)
a092206_list = filter ((== 0) . a214295) [1..]
-- Reinhard Zumkeller, Jul 12 2012
(PARI) is(n)=!issquare(n/3^valuation(n, 3)) \\ Charles R Greathouse IV, Oct 30 2012
CROSSREFS
Sequence in context: A084852 A288659 A228374 * A028746 A028779 A050007
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Feb 24 2004
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 15 05:14 EDT 2024. Contains 372536 sequences. (Running on oeis4.)