Hector, Ohio

Hector is an unincorporated community in Putnam County, in the U.S. state of Ohio.[1]

History

Hector was platted in 1882, and named for Hector Havemeyer, proprietor.[2] A post office was established in 1883, and remained in operation until it was discontinued in 1900.[3] Hector contained a stave factory, but the town's prospects ended once the surrounding forests (and wood supply) were depleted.[4]

gollark: ```haskellimport Data.Listimport Data.Bits fib :: Int -> Integerfib n = snd . foldl_ fib_ (1, 0) . dropWhile not $ [testBit n k | k <- let s = bitSize n in [s-1,s-2..0]] where fib_ (f, g) p | p = (f*(f+2*g), ss) | otherwise = (ss, g*(2*f-g)) where ss = f*f+g*g foldl_ = foldl' -- '```
gollark: import Data.Listimport Data.Bits fib :: Int -> Integerfib n = snd . foldl_ fib_ (1, 0) . dropWhile not $ [testBit n k | k <- let s = bitSize n in [s-1,s-2..0]] where fib_ (f, g) p | p = (f*(f+2*g), ss) | otherwise = (ss, g*(2*f-g)) where ss = f*f+g*g foldl_ = foldl' -- '
gollark: 3.1 Using 2x2 matricesThe argument of iterateabove is a linear transformation, so we can represent it as matrix and compute the nth power of this matrix with O(log n) multiplications and additions.For example, using the simple matrix implementation in Prelude extensions,fib n = head (apply (Matrix [[0,1], [1,1]] ^ n) [0,1])
gollark: 0, 1, 1, 2, 3...
gollark: d o n ' t c h a n g e p e r

References

  1. U.S. Geological Survey Geographic Names Information System: Hector, Ohio
  2. Kinder, George D. (1915). History of Putnam County, Ohio : its peoples, industries, and institutions. B.F. Bowen. p. 145.
  3. "Putnam County". Jim Forte Postal History. Retrieved 30 April 2015.
  4. Warren, Robert (May 31, 1953). "Blanchard River Brought Pioneers To Putnam". Toledo Blade. p. 3. Retrieved 30 April 2015.



This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.