Manuals/calci/FLOYDSTRIANGLE

From ZCubes Wiki
Revision as of 16:09, 21 November 2016 by Devika (talk | contribs)
Jump to navigation Jump to search
FLOYDSTRIANGLE (NumberOfRows,Upto)


  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle NumberOfRows} is the number of rows to get Floyds Triangle.
  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle Upto} is the upper range in the Floyds Triangle.

Description

  • This function returns values of Floyds Triangle.
  • This Triangle lists the natural numbers in a right angled triangle which satisfies the following properties:
  • 1. The first row is 1.
  • 2.Successive rows start towards the left with the next number followed by successive naturals listing one more number than the line above.
  • The first few lines of a Floyd triangle looks like this:

1 2 3 4 5 6...........

Examples

  • FLOYDSTRIANGLE(3,10)

1 2 3 4 5 6

  • FLOYDSTRIANGLE(4,7)

1 2 3 4 5 6 7

See Also

References

Floyds Triangle