Sequence of non-squares

From Rosetta Code
Task
Sequence of non-squares
You are encouraged to solve this task according to the task description, using any language you may know.

Show that the following remarkable formula gives the sequence of non-square natural numbers:

 n + floor(1/2 + sqrt(n))
  • Print out the values for n in the range 1 to 22
  • Show that no squares occur for n less than one million
  • This sequence is also known as A000037.

Ada

<lang ada>with Ada.Numerics.Long_Elementary_Functions; with Ada.Text_IO; use Ada.Text_IO;

procedure Sequence_Of_Non_Squares_Test is

  use Ada.Numerics.Long_Elementary_Functions;
  
  function Non_Square (N : Positive) return Positive is
  begin
     return N + Positive (Long_Float'Rounding (Sqrt (Long_Float (N))));
  end Non_Square;
  
  I : Positive;

begin

  for N in 1..22 loop -- First 22 non-squares
     Put (Natural'Image (Non_Square (N)));
  end loop;
  New_Line;
  for N in 1..1_000_000 loop -- Check first million of
     I := Non_Square (N);
     if I = Positive (Sqrt (Long_Float (I)))**2 then
        Put_Line ("Found a square:" & Positive'Image (N));
     end if;
  end loop;

end Sequence_Of_Non_Squares_Test;</lang> Sample output:

 2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27

ALGOL 68

Translation of: C
Works with: ALGOL 68 version Standard - no extensions to language used
Works with: ALGOL 68G version Any - tested with release mk15-0.8b.fc9.i386
Works with: ELLA ALGOL 68 version Any (with appropriate job cards) - tested with release 1.8.8d.fc9.i386

<lang algol68>PROC non square = (INT n)INT: n + ENTIER(0.5 + sqrt(n));

main: (

   # first 22 values (as a list) has no squares: #
   FOR i TO 22 DO
       print((whole(non square(i),-3),space))
   OD;
   print(new line);

   # The following check shows no squares up to one million:  #
   FOR i TO 1 000 000 DO
       REAL j = sqrt(non square(i));
       IF j = ENTIER j THEN
           put(stand out, ("Error: number is a square:", j, new line));
           stop
       FI
   OD

)</lang> Output:

 2   3   5   6   7   8  10  11  12  13  14  15  17  18  19  20  21  22  23  24  26  27

AutoHotkey

ahk forum: discussion <lang AutoHotkey>Loop 22

  t .= (A_Index + floor(0.5 + sqrt(A_Index))) "  "

MsgBox %t%

s := 0 Loop 1000000

  x := A_Index + floor(0.5 + sqrt(A_Index)), s += x = round(sqrt(x))**2

Msgbox Number of bad squares = %s% ; 0</lang>

AWK

<lang awk>$ awk 'func f(n){return(n+int(.5+sqrt(n)))}BEGIN{for(i=1;i<=22;i++)print i,f(i)}' 1 2 2 3 3 5 4 6 5 7 6 8 7 10 8 11 9 12 10 13 11 14 12 15 13 17 14 18 15 19 16 20 17 21 18 22 19 23 20 24 21 26 22 27

$ awk 'func f(n){return(n+int(.5+sqrt(n)))}BEGIN{for(i=1;i<100000;i++){n=f(i);r=int(sqrt(n));if(r*r==n)print n"is square"}}' $</lang>

BASIC

Works with: FreeBASIC
Works with: RapidQ

<lang freebasic>DIM i AS Integer DIM j AS Double DIM found AS Integer

FUNCTION nonsqr (n AS Integer) AS Integer

   nonsqr = n + INT(0.5 + SQR(n))

END FUNCTION

' Display first 22 values FOR i = 1 TO 22

   PRINT nonsqr(i); " ";

NEXT i PRINT

' Check for squares up to one million found = 0 FOR i = 1 TO 1000000

    j = SQR(nonsqr(i))
    IF j = INT(j) THEN 

found = 1

        PRINT "Found square: "; i
        EXIT FOR
    END IF

NEXT i IF found=0 THEN PRINT "No squares found"</lang>

BBC BASIC

<lang bbcbasic> FOR N% = 1 TO 22

       S% = N% + SQR(N%) + 0.5
       PRINT S%
     NEXT
     
     PRINT '"Checking...."
     FOR N% = 1 TO 999999
       S% = N% + SQR(N%) + 0.5
       R% = SQR(S%)
       IF S%/R% = R% STOP
     NEXT
     PRINT "No squares occur for n < 1000000"</lang>

Output:

         2
         3
         5
         6
         7
         8
        10
        11
        12
        13
        14
        15
        17
        18
        19
        20
        21
        22
        23
        24
        26
        27

Checking....
No squares occur for n < 1000000

Bc

Since BC is an arbitrary precision calculator, there are no issues in sqrt (it is enough to increase the scale variable upto the desired precision), nor there are limits (but time) to how many non-squares we can compute.

<lang bc>#! /usr/bin/bc

scale = 20

define ceil(x) {

   auto intx
   intx=int(x)
   if (intx<x) intx+=1
   return intx

}

define floor(x) {

   return -ceil(-x)

}

define int(x) {

   auto old_scale, ret
   old_scale=scale
   scale=0
   ret=x/1
   scale=old_scale
   return ret

}

define round(x) {

   if (x<0) x-=.5 else x+=.5
   return int(x)

}


define nonsqr(n) {

 return n + round(sqrt(n))

}

for(i=1; i < 23; i++) {

  print nonsqr(i), "\n"

}

for(i=1; i < 1000000; i++) {

 j = sqrt(nonsqr(i))
 if ( j == floor(j) ) {
   print i, " square in the seq\n"
 }

}

quit</lang>

The functions int, round, floor, ceil are taken from here (int is slightly modified) (Here he states the license is GPL).

Burlesque

<lang burlesque> 1 22r@{?s0.5?+av?+}[m </lang>

C

<lang c>#include <math.h>

  1. include <stdio.h>
  2. include <assert.h>

int nonsqr(int n) {

   return n + (int)(0.5 + sqrt(n));
   /* return n + (int)round(sqrt(n)); in C99 */

}

int main() {

   int i;
   
   /* first 22 values (as a list) has no squares: */
   for (i = 1; i < 23; i++)
       printf("%d ", nonsqr(i));
   printf("\n");
   
   /* The following check shows no squares up to one million: */
   for (i = 1; i < 1000000; i++) {
       double j = sqrt(nonsqr(i));
       assert(j != floor(j));
   }
   return 0;

}</lang>

C++

<lang cpp>#include <iostream>

  1. include <algorithm>
  2. include <vector>
  3. include <cmath>
  4. include <boost/bind.hpp>
  5. include <iterator>

double nextNumber( double number ) {

  return number + floor( 0.5 + sqrt( number ) ) ;

}

int main( ) {

  std::vector<double> non_squares ;
  typedef std::vector<double>::iterator SVI ;
  non_squares.reserve( 1000000 ) ;   
  //create a vector with a million sequence numbers
  for ( double i = 1.0 ; i < 100001.0 ; i += 1 )
     non_squares.push_back( nextNumber( i ) ) ;  
  //copy the first numbers to standard out
  std::copy( non_squares.begin( ) , non_squares.begin( ) + 22 ,

std::ostream_iterator<double>(std::cout, " " ) ) ;

  std::cout << '\n' ;
  //find if floor of square root equals square root( i. e. it's a square number )
  SVI found = std::find_if ( non_squares.begin( ) , non_squares.end( ) ,

boost::bind( &floor, boost::bind( &sqrt, _1 ) ) == boost::bind( &sqrt, _1 ) ) ;

  if ( found != non_squares.end( ) ) {
     std::cout << "Found a square number in the sequence!\n" ;
     std::cout << "It is " << *found << " !\n" ;
  }
  else {
     std::cout << "Up to 1000000, found no square number in the sequence!\n" ;
  }
  return 0 ;

}</lang> Output:

2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27 
Up to 1000000, found no square number in the sequence!

C#

<lang csharp>using System; using System.Diagnostics;

namespace sons {

   class Program
   {
       static void Main(string[] args)
       {
           for (int i = 1; i < 23; i++)            
               Console.WriteLine(nonsqr(i));            
           for (int i = 1; i < 1000000; i++)
           {
               double j = Math.Sqrt(nonsqr(i));
               Debug.Assert(j != Math.Floor(j),"Square");
           }            
       }
       static int nonsqr(int i)
       {
           return (int)(i + Math.Floor(0.5 + Math.Sqrt(i)));
       }
   }

}</lang>

Clojure

<lang clojure>;; provides floor and sqrt, but we use Java's sqrt as it's faster

(Clojure's is more exact)

(use 'clojure.contrib.math)


(defn nonsqr [#^Integer n] (+ n (floor (+ 0.5 (Math/sqrt n))))) (defn square? [#^Double n]

 (let [r (floor (Math/sqrt n))]
   (= (* r r) n)))

(doseq [n (range 1 23)] (printf "%s -> %s\n" n (nonsqr n)))

(defn verify [] (not-any? square? (map nonsqr (range 1 1000000))) )</lang>

CoffeeScript

<lang coffeescript> non_square = (n) -> n + Math.floor(1/2 + Math.sqrt(n))

is_square = (n) ->

 r = Math.floor(Math.sqrt(n))
 r * r is n

do ->

 first_22_non_squares = (non_square i for i in [1..22])
 console.log first_22_non_squares
 
 # test is_square has no false negatives:
 for i in [1..10000]
   throw Error("is_square broken") unless is_square i*i
   
 # test non_square is valid for first million values of n
 for i in [1..1000000]
   throw Error("non_square broken") if is_square non_square(i)
 console.log "success"

</lang>

output <lang> > coffee foo.coffee [ 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27 ] success </lang>

Common Lisp

Works with: CCL

<lang lisp>(defun non-square-sequence ()

 (flet ((non-square (n)

"Compute the N-th number of the non-square sequence" (+ n (floor (+ 1/2 (sqrt n))))) (squarep (n) "Tests, whether N is a square" (let ((r (floor (sqrt n)))) (= (* r r) n))))

   (loop
      :for n :upfrom 1 :to 22
      :do (format t "~2D -> ~D~%" n (non-square n)))
   (loop
      :for n :upfrom 1 :to 1000000
      :when (squarep (non-square n))
      :do (format t "Found a square: ~D -> ~D~%" 

n (non-square n)))))</lang>

D

<lang d>import std.stdio, std.math, std.algorithm, std.range;

int nonSquare(in int n) pure nothrow {

   return n + cast(int)(0.5 + sqrt(cast(real)n));

}

void main() {

   iota(1, 23).map!nonSquare().writeln();
   foreach (i; 1 .. 1_000_000) {
       int ns = nonSquare(i);
       assert(ns != (cast(int)sqrt(cast(real)ns)) ^^ 2);
   }

}</lang>

Output:
[2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27]

Erlang

<lang erlang>% Implemented by Arjun Sunel -module(non_squares). -export([main/0]).

main() -> lists:foreach(fun(X) -> io:format("~p~n",[non_square(X)] ) end, lists:seq(1,22)),  % First 22 non-squares. lists:foreach(fun(X) -> io:format("~p~n",[non_square(X)] ) end, lists:seq(1,1000000)). % First 1 million non-squares. non_square(N) -> N+trunc(1/2+ math:sqrt(N)). </erlang>

Euphoria

This is based on the BASIC and Go examples. <lang Euphoria>function nonsqr( atom n)

   return n + floor( 0.5 + sqrt( n ) )

end function

puts( 1, " n r(n)\n" ) puts( 1, "--- ---\n" ) for i = 1 to 22 do

   printf( 1, "%3d  %3d\n", { i, nonsqr(i) } )

end for

atom j atom found found = 0 for i = 1 to 1000000 do

   j = sqrt(nonsqr(i))
   if integer(j) then
       found = 1
       printf( 1, "Found square: %d\n", i )
       exit
   end if

end for if found = 0 then

   puts( 1, "No squares found\n" ) 

end if</lang>

F#

<lang fsharp>open System

let SequenceOfNonSquares =

   let nonsqr n = n+(int(0.5+Math.Sqrt(float (n))))
   let isqrt n = int(Math.Sqrt(float(n)))
   let IsSquare n = n = (isqrt n)*(isqrt n)
   {1 .. 999999}
   |> Seq.map(fun f -> (f, nonsqr f))
   |> Seq.filter(fun f -> IsSquare(snd f))
</lang>

Executing the code gives:<lang fsharp> > SequenceOfNonSquares;; val it : seq<int * int> = seq []</lang>

Fantom

<lang fantom> class Main {

 static Float fn (Int n)
 {
   n + (0.5f + (n * 1.0f).sqrt).floor
 }
 static Bool isSquare (Float n)
 {
   n.sqrt.floor == n.sqrt
 }
 public static Void main ()
 {
   (1..22).each |n|
   {
     echo ("$n is ${fn(n)}")
   }
   echo ((1..1000000).toList.any |n| { isSquare (fn(n)) } )
 }

} </lang>

Forth

<lang forth>: u>f 0 d>f ;

f>u f>d drop ;
fn ( n -- n ) dup u>f fsqrt fround f>u + ;
test ( n -- ) 1 do i fn . loop ;

23 test \ 2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27 ok

square? ( n -- ? ) u>f fsqrt fdup fround f- f0= ;
test ( n -- ) 1 do i fn square? if cr i . ." fn was square" then loop ;

1000000 test \ ok</lang>

Fortran

Works with: Fortran version 90 and later

<lang fortran>PROGRAM NONSQUARES

 IMPLICIT NONE
 INTEGER :: m, n, nonsqr
     
 DO n = 1, 22
   nonsqr =  n + FLOOR(0.5 + SQRT(REAL(n)))  ! or could use NINT(SQRT(REAL(n)))
   WRITE(*,*) nonsqr
 END DO
 DO n = 1, 1000000
   nonsqr =  n + FLOOR(0.5 + SQRT(REAL(n)))
   m = INT(SQRT(REAL(nonsqr)))
   IF (m*m == nonsqr) THEN
     WRITE(*,*) "Square found, n=", n
   END IF
 END DO

END PROGRAM NONSQUARES</lang>

GAP

<lang># Here we use generators : the given formula doesn't need one, but the alternate

  1. non-squares function is better done with a generator.
  1. The formula is implemented with exact floor(sqrt(n)), so we use
  2. a trick: multiply by 100 to get the first decimal digit of the
  3. square root of n, then add 5 (that's 1/2 multiplied by 10).
  4. Then just divide by 10 to get floor(1/2 + sqrt(n)) exactly.
  5. It looks weird, but unlike floating point, it will do the job
  6. for any n.

NonSquaresGen := function() local ns, n; n := 0; ns := function() n := n + 1; return n + QuoInt(5 + RootInt(100*n), 10); end; return ns; end;

NonSquaresAlt := function() local ns, n, q, k; n := 1; q := 4; k := 3; ns := function() n := n + 1; if n = q then n := n + 1; k := k + 2; q := q + k; fi; return n; end; return ns; end;

gen := NonSquaresGen(); List([1 .. 22] i -> gen());

  1. [ 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27 ]

a := NonSquaresGen(); b := NonSquaresAlt();

ForAll([1 .. 1000000], i -> a() = b());

  1. true</lang>

Go

I assume it's obvious that the function monotonically increases, thus it's enough to just watch for the next possible square. If a square is found, the panic will cause an ugly stack trace. <lang go>package main

import (

   "fmt"
   "math"

)

func remarkable(n int) int {

   return n + int(.5+math.Sqrt(float64(n)))

}

func main() {

   // task 1
   fmt.Println("  n  r(n)")
   fmt.Println("---  ---")
   for n := 1; n <= 22; n++ {
       fmt.Printf("%3d  %3d\n", n, remarkable(n))
   }
   // task 2
   const limit = 1e6
   fmt.Println("\nChecking for squares for n <", limit)
   next := 2
   nextSq := 4
   for n := 1; n < limit; n++ {
       r := remarkable(n)
       switch {
       case r == nextSq:
           panic(n)
       case r > nextSq:
           fmt.Println(nextSq, "didn't occur")
           next++
           nextSq = next * next
       }
   }
   fmt.Println("No squares occur for n <", limit)

}</lang> Output:

  n  r(n)
---  ---
  1    2
  2    3
  3    5
  4    6
  5    7
  6    8
  7   10
  8   11
  9   12
 10   13
 11   14
 12   15
 13   17
 14   18
 15   19
 16   20
 17   21
 18   22
 19   23
 20   24
 21   26
 22   27

Checking for squares for n < 1e+06
4 didn't occur
9 didn't occur
16 didn't occur
...
996004 didn't occur
998001 didn't occur
1000000 didn't occur
No squares occur for n < 1e+06

Groovy

Solution: <lang groovy> def nonSquare = { long n -> n + ((1/2 + n**0.5) as long) }</lang>

Test Program: <lang groovy>(1..22).each { println nonSquare(it) } (1..1000000).each { assert ((nonSquare(it)**0.5 as long)**2) != nonSquare(it) }</lang>

Output:

2
3
5
6
7
8
10
11
12
13
14
15
17
18
19
20
21
22
23
24
26
27

Haskell

<lang haskell>nonsqr :: Integral a => a -> a nonsqr n = n + round (sqrt (fromIntegral n))</lang>

> map nonsqr [1..22]
[2,3,5,6,7,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,26,27]

> any (\j -> j == fromIntegral (floor j)) $ map (sqrt . fromIntegral . nonsqr) [1..1000000]
False

HicEst

<lang HicEst>REAL :: n=22, nonSqr(n)

nonSqr = $ + FLOOR(0.5 + $^0.5) WRITE() nonSqr

squares_found = 0 DO i = 1, 1E6

  non2 = i + FLOOR(0.5 + i^0.5)
  root = FLOOR( non2^0.5 )
  squares_found =  squares_found + (non2 == root*root)

ENDDO WRITE(Name) squares_found END</lang>

2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27
squares_found=0; 

IDL

<lang IDL>n = lindgen(1000000)+1  ; Take a million numbers f = n+floor(.5+sqrt(n))  ; Apply formula print,f[0:21]  ; Output first 22 print,where(sqrt(f) eq fix(sqrt(f))) ; Test for squares</lang>

Output:

        2        3        5        6        7        8       10       11       12
       13       14       15       17       18       19       20       21       22
       23       24       26       27

       -1

Icon and Unicon

<lang Icon>link numbers

procedure main()

every n := 1 to 22 do

 write("nsq(",n,") := ",nsq(n))

every x := sqrt(nsq(n := 1 to 1000000)) do

 if x  = floor(x)^2 then write("nsq(",n,") = ",x," is a square.")

write("finished.") end

procedure nsq(n) # return non-squares return n + floor(0.5 + sqrt(n)) end</lang>

numbers provides floor

J

<lang j> rf=:+ 0.5 <.@+ %: NB. Remarkable formula

  rf 1+i.22               NB.  Results from 1 to 22

2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27

  +/ (rf e. *:) 1+i.1e6   NB.  Number of square RFs <= 1e6

0</lang>

Java

<lang java>public class SeqNonSquares {

   public static int nonsqr(int n) {
       return n + (int)Math.round(Math.sqrt(n));
   }
   
   public static void main(String[] args) {
       // first 22 values (as a list) has no squares:
       for (int i = 1; i < 23; i++)
           System.out.print(nonsqr(i) + " ");
       System.out.println();
       
       // The following check shows no squares up to one million:
       for (int i = 1; i < 1000000; i++) {
           double j = Math.sqrt(nonsqr(i));
           assert j != Math.floor(j);
       }
   }

}</lang>

Liberty BASIC

<lang lb> for i = 1 to 22

   print nonsqr( i); " ";

next i print

found = 0 for i = 1 to 1000000

    j = ( nonsqr( i))^0.5
    if j = int( j) then
       found = 1
       print "Found square: "; i
       exit for
    end if

next i if found =0 then print "No squares found"

end

function nonsqr( n)

   nonsqr = n +int( 0.5 +n^0.5)

end function </lang>

2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27
No squares found


<lang logo>repeat 22 [print sum # round sqrt #]</lang>

Lua

<lang lua>for i = 1, 22 do print(i + math.round(i^.5)) end</lang>

Mathematica

<lang Mathematica>nonsq = (# + Floor[0.5 + Sqrt[#]]) &; nonsq@Range[22] If[! Or @@ (IntegerQ /@ Sqrt /@ nonsq@Range[10^6]),

Print["No squares for n <= ", 10^6]
]</lang>

Output:

{2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27}
No squares for n <= 1000000

MATLAB

<lang MATLAB>function nonSquares(i)

   for n = (1:i)
       
       generatedNumber = n + floor(1/2 + sqrt(n));
       
       if mod(sqrt(generatedNumber),1)==0 %Check to see if the sqrt of the generated number is an integer
           fprintf('\n%d generates a square number: %d\n', [n,generatedNumber]);
           return
       else %If it isn't then the generated number is a square number
           if n<=22
               fprintf('%d ',generatedNumber);
           end
       end
   end
   
   fprintf('\nNo square numbers were generated for n <= %d\n',i);
   

end</lang> Solution: <lang MATLAB>>> nonSquares(1000000) 2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27 No square numbers were generated for n <= 1000000</lang>

Maxima

<lang maxima>nonsquare(n) := n + quotient(isqrt(100 * n) + 5, 10); makelist(nonsquare(n), n, 1, 20); [2,3,5,6,7,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24]

not_square(n) := isqrt(n)^2 # n$

m: 10^6$ u: makelist(i, i, 1, m)$ is(sublist(u, not_square) = sublist(map(nonsquare, u), lambda([x], x <= m))); true</lang>

MMIX

<lang mmix> LOC Data_Segment GREG @ buf OCTA 0,0

GREG @ NL BYTE #a,0 errh BYTE "Sorry, number ",0 errt BYTE "is a quare.",0 prtOk BYTE "No squares found below 1000000.",0

i IS $1 % loop var. x IS $2 % computations y IS $3 % .. z IS $4 % .. t IS $5 % temp Ja IS $127 % return address

LOC #100 % locate program GREG @

// print integer of max. 7 digits to StdOut // primarily used to show the first 22 non squares // in advance the end of the buffer is filled with ' 0 ' // reg x contains int to be printed bp IS $71 0H GREG #0000000000203020 prtInt STO 0B,buf % initialize buffer LDA bp,buf+7 % points after LSD % REPEAT 1H SUB bp,bp,1 % move buffer pointer DIV x,x,10 % divmod (x,10) GET t,rR % get remainder INCL t,'0' % make char digit STB t,bp % store digit PBNZ x,1B % UNTIL no more digits LDA $255,bp TRAP 0,Fputs,StdOut % print integer GO Ja,Ja,0 % 'return'

// function calculates non square // x = RF ( i ) RF FLOT x,i % convert i to float FSQRT x,0,x % x = floor ( 0.5 + sqrt i ) FIX x,x % convert float to int ADD x,x,i % x = i + floor ( 0.5 + sqrt i ) GO Ja,Ja,0 % 'return'

% main (argc, argv) { // generate the first 22 non squares Main SET i,1 % for ( i=1; i<=22; i++){ 1H GO Ja,RF % x = RF (i) GO Ja,prtInt % print non square INCL i,1 % i++ CMP t,i,22 % i<=22 ? PBNP t,1B % } LDA $255,NL TRAP 0,Fputs,StdOut

// check if RF (i) is a square for 0 < i < 1000000 SET i,1000 MUL i,i,i SUB i,i,1 % for ( i = 999999; i>0; i--) 3H GO Ja,RF % x = RF ( i ) // square test FLOT y,x % convert int x to float FSQRT z,3,y % z = floor ( sqrt ( int (x) ) ) FIX z,z % z = cint z MUL z,z,z % z = z^2 CMP t,x,z % x != (int sqrt x)^2 ? PBNZ t,2F % if yes then continue // it should not happen, but if a square is found LDA $255,errh % else print err-message TRAP 0,Fputs,StdOut GO Ja,prtInt % show trespasser LDA $255,errt TRAP 0,Fputs,StdOut LDA $255,NL TRAP 0,Fputs,StdOut TRAP 0,Halt,0

2H SUB i,i,1 % i-- PBNZ i,3B % i>0? } LDA $255,prtOk % TRAP 0,Fputs,StdOut LDA $255,NL TRAP 0,Fputs,StdOut TRAP 0,Halt,0 % }</lang> Output:

~/MIX/MMIX/Rosetta> mmix SoNS
2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27
No squares found below 1000000.

Modula-3

<lang modula3>MODULE NonSquare EXPORTS Main;

IMPORT IO, Fmt, Math;

VAR i: INTEGER;

PROCEDURE NonSquare(n: INTEGER): INTEGER =

 BEGIN
   RETURN n + FLOOR(0.5D0 + Math.sqrt(FLOAT(n, LONGREAL)));
 END NonSquare;

BEGIN

 FOR n := 1 TO 22 DO
   IO.Put(Fmt.Int(NonSquare(n)) & " ");
 END;
 IO.Put("\n");
 FOR n := 1 TO 1000000 DO
   i := NonSquare(n);
   IF i = FLOOR(Math.sqrt(FLOAT(i, LONGREAL))) THEN
     IO.Put("Found square: " & Fmt.Int(n) & "\n");
   END;
 END;

END NonSquare.</lang> Output:

2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27

МК-61/52

<lang>1 П4 ИП4 0 , 5 ИП4 КвКор + [x] + С/П КИП4 БП 02</lang>

OCaml

<lang ocaml># let nonsqr n = n + truncate (0.5 +. sqrt (float n));; val nonsqr : int -> int = <fun>

  1. (* first 22 values (as a list) has no squares: *)
 for i = 1 to 22 do
   Printf.printf "%d " (nonsqr i)
 done;
 print_newline ();;

2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27 - : unit = ()

  1. (* The following check shows no squares up to one million: *)
 for i = 1 to 1_000_000 do
   let j = sqrt (float (nonsqr i)) in
     assert (j <> floor j)
 done;;

- : unit = ()</lang>

Oz

<lang oz>declare

 fun {NonSqr N}
    N + {Float.toInt {Floor 0.5 + {Sqrt {Int.toFloat N}}}}
 end
 fun {SqrtInt N}
    {Float.toInt {Sqrt {Int.toFloat N}}}
 end
 fun {IsSquare N}
    {Pow {SqrtInt N} 2} == N
 end
 Ns = {Map {List.number 1 999999 1} NonSqr}

in

 {Show {List.take Ns 22}}
 {Show {Some Ns IsSquare}}</lang>

PARI/GP

<lang parigp>[vector(22,n,n + floor(1/2 + sqrt(n))), sum(n=1,1e6,issquare(n + floor(1/2 + sqrt(n))))]</lang>

Pascal

Library: Math

<lang pascal>Program SequenceOfNonSquares(output);

uses

 Math;
                    

var

 m, n, test: longint;

begin

 for n := 1 to 22 do
 begin
   test :=  n + floor(0.5 + sqrt(n));
   write(test, ' ');
 end;
 writeln;

 for n := 1 to 1000000 do
 begin
   test :=  n + floor(0.5 + sqrt(n));
   m := round(sqrt(test));
   if (m*m = test) then
     writeln('square found for n = ', n);
 end; 

end.</lang> Output:

:> ./SequenceOfNonSquares
2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27

Perl

<lang perl>sub nonsqr { my $n = shift; $n + int(0.5 + sqrt($n)) } print join(' ', map nonsqr($_), 1..22), "\n"; foreach my $i (1..1_000_000) {

 my $j = sqrt(nonsqr($i));
 $j != int($j) or die "Found a square in the sequence: $i";

}</lang>

Perl 6

Works with: Rakudo Star version 2010.08

<lang perl6>sub nth_term (Int $n) { $n + round sqrt $n }

say nth_term $_ for 1 .. 22;

loop (my $i = 1; $i <= 1_000_000; $i++) {

   $i.&nth_term.sqrt %% 1 and say "nth_term($i) is square.";

}</lang> Note, the last test takes a couple of hours to run.

PicoLisp

<lang PicoLisp>(de sqfun (N)

  (+ N (sqrt N T)) )  # 'sqrt' rounds when called with 'T'

(for I 22

  (println I (sqfun I)) )

(for I 1000000

  (let (N (sqfun I)  R (sqrt N))
     (when (= N (* R R))
        (prinl N " is square") ) ) )</lang>

Output:

1 2
2 3
3 5
4 6
5 7
6 8
7 10
8 11
9 12
10 13
11 14
12 15
13 17
14 18
15 19
16 20
17 21
18 22
19 23
20 24
21 26
22 27

PL/I

<lang PL/I>

  put skip edit ((n, n + floor(sqrt(n) + 0.5) do n = 1 to n))
     (skip, 2 f(5));

</lang>

Results:

<lang>

   1    2
   2    3
   3    5
   4    6
   5    7
   6    8
   7   10
   8   11
   9   12
  10   13
  11   14
  12   15
  13   17
  14   18
  15   19
  16   20
  17   21
  18   22
  19   23
  20   24
  21   26

</lang>

Test 1,000,000 values:

<lang> test: proc options (main);

  declare n fixed (15);
  
  do n = 1 to 1000000;
     if perfect_square (n + fixed(sqrt(n) + 0.5, 15)) then
        do; put skip list ('formula fails for n = ', n); stop; end;
  end;

perfect_square: procedure (N) returns (bit (1) aligned);

  declare N fixed (15);
  declare K fixed (15);
  k = sqrt(N)+0.1;
  return ( k*k = N );

end perfect_square;

end test; </lang>

PostScript

<lang>/nonsquare { dup sqrt .5 add floor add } def /issquare { dup sqrt floor dup mul eq } def

1 1 22 { nonsquare = } for

1 1 1000 {

       dup nonsquare issquare { 
               (produced a square!) = = exit
       } if pop

} for </lang>Output: (lack of error message shows none below 1000 produced a square)

2.0
3.0
5.0
6.0
7.0
8.0
10.0
11.0
12.0
13.0
14.0
15.0
17.0
18.0
19.0
20.0
21.0
22.0
23.0
24.0
26.0
27.0

PureBasic

<lang PureBasic>OpenConsole() For a = 1 To 22

 ; Integer, so no floor needed
 tmp = 1 / 2 + Sqr(a)
 Print(Str(a + tmp) + ", ")

Next PrintN("") PrintN("Starting check till one million") For a = 1 To 1000000

 value.d = a + Round((1 / 2 + Sqr(a)), #PB_Round_Down)
 root    = Sqr(value)
 If value - root*root = 0
   found + 1
   If found < 20
     PrintN("Found a square! " + Str(value))
   ElseIf found = 20
     PrintN("And more")
   EndIf
 EndIf

Next If found

 PrintN(Str(found) + " Squares found, see above")

Else

 PrintN("No squares, all ok")

EndIf

Wait for enter

Input()</lang>

PowerShell

Implemented as a filter here, which can be used directly on the pipeline. <lang powershell>filter Get-NonSquare {

   return $_ + [Math]::Floor(1/2 + [Math]::Sqrt($_))

}</lang> Printing out the first 22 values is straightforward, then: <lang powershell>1..22 | Get-NonSquare</lang> If there were any squares for n up to one million, they would be printed with the following, but there is no output: <lang powershell>1..1000000 `

   | Get-NonSquare `
   | Where-Object {
         $r = [Math]::Sqrt($_)
         [Math]::Truncate($r) -eq $r
     }</lang>

Python

<lang python>>>> from math import sqrt >>> # (Using the fact that round(X) is equivalent to floor(0.5+X) for our range of X) >>> def nonsqr(n): return n + int(round(sqrt(n)))

>>> # first 22 values (as a list) has no squares: >>> [nonsqr(i) for i in xrange(1,23)] [2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27] >>> # The following check shows no squares up to one million: >>> for i in xrange(1,1000000): j = sqrt(nonsqr(i)) assert j != int(j), "Found a square in the sequence: %i" % i


>>></lang>

R

Printing the first 22 nonsquares. <lang R>nonsqr <- function(n) n + floor(1/2 + sqrt(n)) nonsqr(1:22)</lang>

[1]  2  3  5  6  7  8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27

Testing the first million nonsquares. <lang R>is.square <- function(x) {

  sqrx <- sqrt(x)
  err <- abs(sqrx - round(sqrx))
  err < 100*.Machine$double.eps

} any(is.square(nonsqr(1:1e6)))</lang>

[1] FALSE

Racket

<lang racket>

  1. lang racket

(define (non-square n)

 (+ n (exact-floor (+ 1/2 (sqrt n)))))

(map non-square (range 1 23))

(define (square? n) (integer? (sqrt n)))

(for/or ([n (in-range 1 1000001)])

 (square? (non-square n)))

</lang>

Output:

'(2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27)
#f

REXX

REXX has no native support for FLOOR or SQRT, so those subroutines are written in REXX and are included below.

The ISQRT is a special square root function, it returns the integer square root.

7=isqrt(63)
8=isqrt(64)
8=isqrt(65) <lang rexx> /*REXX program to show some non-square numbers.*/

 do j=1 for 22
 say right(j,6) right(j+floor(1/2 + sqrt(j)),7)
 end

oops=0

 do k=1 for 1000000-1
 n=k+floor(.5+sqrt(k))
 iroot=isqrt(n)
 if iroot*iroot==n then oops=oops+1
 end

say say oops 'squares found up to' k-1 exit

/*-------------------------------FLOOR subroutine----------------------*/ floor:procedure; parse arg x;return trunc(x-(x<0))

/*-------------------------------SQRT subroutine-----------------------*/ sqrt: procedure; parse arg x,f; if x=0 then return 0; d=digits() numeric digits 11; g=x/4; m.=11; p=d+d%4+2

 do j=0 while p>9; m.j=p; p=p%2+1; end
 do k=j+5 to 0 by -1; if m.k>11 then numeric digits m.k;g=.5*(g+x/g);end

numeric digits d return g/1 /*return the normalized square root of X.*/

/*-------------------------------ISQRT subroutine----------------------*/ isqrt:procedure;parse arg x; x=trunc(x); r=0; q=1

 do while q<=x; q=q*4; end
 do while q>1; q=q%4; _=x-r-q; r=r%2; if _>=0 then do; x=_; r=r+q; end
 end

return r /*return the integer square root of X.*/ </lang> Output:

     1       2
     2       3
     3       5
     4       6
     5       7
     6       8
     7      10
     8      11
     9      12
    10      13
    11      14
    12      15
    13      17
    14      18
    15      19
    16      20
    17      21
    18      22
    19      23
    20      24
    21      26
    22      27

0 squares found up to 999999

Ruby

<lang ruby>def f(n); n + (0.5 + Math.sqrt(n)).floor; end

(1..22).each { |n| p "#{n} #{f(n)}" }

non_squares = (1..1_000_000).map { |n| f(n) } squares = (1..1001).map { |n| n**2 } # Note: 1001*1001 = 1_002_001 > 1_001_000 = f(1_000_000) (squares & non_squares).each do |n|

 fail "Oops, found a square f(#{non_squares.index(n)}) = #{n}"

end</lang>

Scala

<lang scala>def nonsqr(n:Int)=n+math.round(math.sqrt(n)).toInt

for(n<-1 to 22) println(n + " "+ nonsqr(n))

val test=(1 to 1000000).exists{n =>

  val j=math.sqrt(nonsqr(n))
  j==math.floor(j)

} println("squares up to one million="+test)</lang>

Scheme

<lang scheme>(define non-squares

 (lambda (index)
   (+ index (inexact->exact (floor (+ (/ 1 2) (sqrt index)))))))

(define sequence

 (lambda (function)
   (lambda (start)
     (lambda (stop)
       (if (> start stop)
           (list)
           (cons (function start)
                 (((sequence function) (+ start 1)) stop)))))))

(define square?

 (lambda (number)
   ((lambda (root)
      (= (* root root) number))
    (floor (sqrt number)))))

(define any?

 (lambda (predicate?)
   (lambda (list)
     (and (not (null? list))
          (or (predicate? (car list))
              ((any? predicate?) (cdr list)))))))

(display (((sequence non-squares) 1) 22)) (newline)

(display ((any? square?) (((sequence non-squares) 1) 999999))) (newline)</lang> Output:

(2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27)
#f

Seed7

<lang seed7>$ include "seed7_05.s7i";

 include "float.s7i";
 include "math.s7i";

const func integer: nonsqr (in integer: n) is

 return n + trunc(0.5 + sqrt(flt(n)));

const proc: main is func

 local
   var integer: i is 0;
   var float: j is 0.0;
 begin
   # First 22 values (as a list) has no squares:
   for i range 1 to 22 do
     write(nonsqr(i) <& " ");
   end for;
   writeln;

   # The following check shows no squares up to one million:
   for i range 1 to 1000000 do
     j := sqrt(flt(nonsqr(i)));
     if j = floor(j) then
       writeln("Found square for nonsqr(" <& i <& ")");
     end if;
   end for;
 end func;</lang>

Standard ML

<lang sml>- fun nonsqr n = n + round (Math.sqrt (real n)); val nonsqr = fn : int -> int - List.tabulate (23, nonsqr); val it = [0,2,3,5,6,7,8,10,11,12,13,14,...] : int list - let fun loop i = if i = 1000000 then true

                                 else let val j = Math.sqrt (real (nonsqr i)) in
                                        Real.!= (j, Real.realFloor j) andalso
                                          loop (i+1)
                                      end in
   loop 1
 end;

val it = true : bool</lang>

Tcl

<lang tcl>package require Tcl 8.5

set f {n {expr {$n + floor(0.5 + sqrt($n))}}}

for {set x 1} {$x <= 22} {incr x} {

   puts [format "%d\t%s" $x [apply $f $x]]

}

puts "looking for a square..." for {set x 1} {$x <= 1000000} {incr x} {

   set y [apply $f $x]
   set s [expr {sqrt($y)}]
   if {$s == int($s)} {
       error "found a square in the sequence: $x -> $y"
   }

} puts "done"</lang> outputs

1	2.0
2	3.0
3	5.0
4	6.0
5	7.0
6	8.0
7	10.0
8	11.0
9	12.0
10	13.0
11	14.0
12	15.0
13	17.0
14	18.0
15	19.0
16	20.0
17	21.0
18	22.0
19	23.0
20	24.0
21	26.0
22	27.0
looking for a square...
done

TI-89 BASIC

Definition and 1 to 22, interactively:

<lang ti89b>■ n+floor(1/2+√(n)) → f(n)

   Done

■ seq(f(n),n,1,22)

   {2,3,5,6,7,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,26,27}</lang>

Program testing up to one million:

<lang ti89b>test() Prgm

 Local i, ns
 For i, 1, 10^6
   f(i) → ns
   If (floor(√(ns)))^2 = ns Then
     Disp "Oops: " & string(ns)
   EndIf
 EndFor
 Disp "Done"

EndPrgm</lang>

(This program has not been run to completion.)

Ursala

<lang Ursala>#import nat

  1. import flo

nth_non_square = float; plus^/~& math..trunc+ plus/0.5+ sqrt is_square = sqrt; ^E/~& math..trunc

  1. show+

examples = %neALP ^(~&,nth_non_square)*t iota23 check = (is_square*~+nth_non_square*t; ~&i&& %eLP)||-[no squares found]-! iota 1000000</lang> output:

<
   1: 2.000000e+00,
   2: 3.000000e+00,
   3: 5.000000e+00,
   4: 6.000000e+00,
   5: 7.000000e+00,
   6: 8.000000e+00,
   7: 1.000000e+01,
   8: 1.100000e+01,
   9: 1.200000e+01,
   10: 1.300000e+01,
   11: 1.400000e+01,
   12: 1.500000e+01,
   13: 1.700000e+01,
   14: 1.800000e+01,
   15: 1.900000e+01,
   16: 2.000000e+01,
   17: 2.100000e+01,
   18: 2.200000e+01,
   19: 2.300000e+01,
   20: 2.400000e+01,
   21: 2.600000e+01,
   22: 2.700000e+01>
no squares found

XPL0

<lang XPL0>include c:\cxpl\codes; \intrinsic 'code' declarations

func real Floor(X); \Truncate X toward - infinity real X; return float(fix(X-0.5));

func PerfectSq(N); \Return 'true' if N is a perfect square int N; return sqrt(N)*sqrt(N) = N;

int N, M, M0; [for N:= 1 to 22 do

       [IntOut(0, fix(float(N) + Floor(0.5 + sqrt(float(N)))));  ChOut(0,^ )];

CrLf(0); M0:= 1; for N:= 1 to 999_999 do

       [M:= fix(float(N) + Floor(0.5 + sqrt(float(N))));
       if PerfectSq(M) then [IntOut(0, M);  Crlf(0)];  \error: have square
       if M#M0+1 and not PerfectSq(M0+1) then          \error: not sequential
               [IntOut(0, M);  Crlf(0)];
       M0:= M;
       ];

]</lang>

Example output:

2 3 5 6 7 8 10 11 12 13 14 15 17 18 19 20 21 22 23 24 26 27