OFFSET
1,2
COMMENTS
REFERENCES
R. A. Bates, E. Riccomagno, R. Schwabe, H. P. Wynn, Lattices and dual lattices in optimal experimental design for Fourier models, Computational Statistics & Data Analysis Volume 28, Issue 3, 4 September 1998, Pages 283-296. See page 293.
D. R. Hofstadter, "Goedel, Escher, Bach: An Eternal Golden Braid", Basic Books Incorporated, p. 73
P. Mark Kayll, Well-spread sequences and edge-labelings with constant Hamiltonian weight, Disc. Math. & Theor. Comp. Sci 6 2 (2004) 401-408
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..150
B. G. DeBoer, Letter to N. J. A. Sloane, Dec 15 1978, with enclosure of Silvertom article.
J. V. Silverton, On the generation of 'magic integrals', Acta Cryst. A34 (1978) p. 634.
Eric Weisstein's World of Mathematics, Magic Integer.
FORMULA
a(n+1) = min{ k | k and k +- a(i) are not equal to a(i) or a(i)-a(j) or a(i)+a(j) for any n+1 > i > j > 0}. [Corrected by T. D. Noe, Sep 08 2008]
MATHEMATICA
a[1] = 1; a[n_] := a[n] = Module[{pairs = Flatten[ Table[{a[j] + a[k], a[k] - a[j]}, {j, 1, n-1}, {k, j+1, n-1}]], an = a[n-1] + 1}, While[ True, If[ Intersection[ Join[ Array[a, n-1], pairs], Prepend[ Flatten[ Table[{a[j] + an, an - a[j]}, {j, 1, n-1}]], an]] == {}, Break[], an++]]; an]; Table[a[n], {n, 1, 48}] (* Jean-François Alcover, Nov 10 2011 *)
PROG
(Haskell)
import Data.List (intersect)
a004210 n = a004210_list !! (n-1)
a004210_list = magics 1 [0] [0] where
magics :: Integer -> [Integer] -> [Integer] -> [Integer]
magics n ms tests
| tests `intersect` nMinus == [] && tests `intersect` nPlus == []
= n : magics (n+1) (n:ms) (nMinus ++ nPlus ++ tests)
| otherwise
= magics (n+1) ms tests
where nMinus = map (n -) ms
nPlus = map (n +) ms
-- magics works also as generator for a126428_list, cf. A126428.
-- Reinhard Zumkeller, Mar 03 2011
KEYWORD
easy,nonn,nice
AUTHOR
N. J. A. Sloane, following a suggestion from B. G. DeBoer, Dec 15 1978
EXTENSIONS
Additional comments from Robert M. Burton, Jr. (bob(AT)oregonstate.edu), Feb 20 2005
More terms from Joshua Zucker, May 04 2006
Edited by N. J. A. Sloane, Sep 06 2008 at the suggestion of R. J. Mathar
Edited by N. J. A. Sloane, Feb 08 2012
STATUS
approved