cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A085922 Duplicate of A048973.

Original entry on oeis.org

4, 7, 9, 12, 13, 15, 20, 23, 26, 27, 28, 31, 36, 38, 39, 42, 44, 48, 50, 52, 53, 55, 56, 61
Offset: 0

Views

Author

Keywords

A005243 A self-generating sequence: start with 1 and 2, take all sums of any number of successive previous elements and adjoin them to the sequence. Repeat!

Original entry on oeis.org

1, 2, 3, 5, 6, 8, 10, 11, 14, 16, 17, 18, 19, 21, 22, 24, 25, 29, 30, 32, 33, 34, 35, 37, 40, 41, 43, 45, 46, 47, 49, 51, 54, 57, 58, 59, 60, 62, 65, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 99, 100
Offset: 1

Views

Author

D. R. Hofstadter, Jul 15 1977

Keywords

Comments

Most of the natural numbers are members. Conjecture: there are infinitely many nonmembers. Is there an estimate for a(k)/k ?
A118164(n) = number of representations of a(n) as sum of consecutive earlier terms. - Reinhard Zumkeller, Apr 13 2006

Examples

			After 1,2,3,5,6 you can adjoin 8 = 3+5, 10 = 2+3+5, etc.
12 is not a term since it is not the sum of any set of consecutive previous terms.
		

References

  • R. K. Guy, Unsolved Problems in Number Theory, E31.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Complement of A048973.

Programs

  • Haskell
    import Data.Set (singleton, deleteFindMin, fromList, union, IntSet)
    a005243 n = a005243_list !! (n-1)
    a005243_list = 1 : h [1] (singleton 2) where
       h xs s = m : h (m:xs) (union s' $ fromList $ map (+ m) $ scanl1 (+) xs)
         where (m, s') = deleteFindMin s
    -- Reinhard Zumkeller, Dec 17 2015, Jun 22 2011
  • Mathematica
    nmax = 200; For[ s = {1, 2}; n = 3, n <= nmax, n++, ls = Length[s]; tt = Total /@ Flatten[Table[s[[i ;; j]], {i, 1, ls-1}, {j, i+1, ls}], 1]; If[MemberQ[tt, n], AppendTo[s, n]]]; A005243 = s (* Jean-François Alcover, Oct 21 2016 *)

Extensions

More terms from Jud McCranie

A118066 Complement of A118065.

Original entry on oeis.org

8, 17, 24, 35, 40, 56, 72, 79, 92, 104, 108, 120, 124, 134, 142, 152, 176, 212, 226, 256, 269, 272, 286, 312, 324, 344, 353, 360, 456, 542, 548, 556, 592, 596, 644, 652, 689, 712, 748, 842, 884, 902, 968, 972, 988, 1012, 1016, 1097, 1168, 1193, 1246, 1256
Offset: 1

Views

Author

Reinhard Zumkeller, Apr 11 2006

Keywords

Crossrefs

Cf. A048973.
Showing 1-3 of 3 results.