login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A325427 a(n) is the least number not 2*a(m)+1 or floor(3*a(m)/2) for any m < n. 5
1, 2, 4, 7, 8, 11, 13, 14, 18, 20, 22, 24, 25, 26, 28, 31, 32, 34, 35, 38, 40, 43, 44, 47, 50, 54, 55, 56, 58, 59, 61, 62, 67, 68, 72, 73, 74, 76, 78, 79, 80, 83, 85, 86, 90, 92, 94, 96, 97, 98, 99, 103, 104, 105, 106, 107, 110, 112, 115, 116, 121, 122, 126 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
The sequence necessarily starts with 1. The next 2 terms are determined as follows: because a(1) = 1, the number 3 is disallowed, so that a(2) = 2, whence the numbers 5 and 6 are disallowed, and a(3) = 4. See A325417 for a guide to related sequences.
MATHEMATICA
a = {1}; Do[AppendTo[a, NestWhile[# + 1 &, Last[a] + 1, Apply[Or,
Map[MemberQ[a, #] &, Select[Flatten[{(#-1)/2,
If[Mod[#, 3] == 0, (2 #)/3, 0] + If[Mod[#, 3] == 1, 1/3 (1 + 2 #), 0]}],
IntegerQ || # == 0]]] &]], {150}]; a (* A325427 *)
Complement[Range[Last[a]], a] (* A325428 *)
(* Peter J. C. Moses, Apr 25 2019 *)
CROSSREFS
Sequence in context: A238989 A093696 A190851 * A336656 A243751 A187838
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 30 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 25 08:31 EDT 2024. Contains 375422 sequences. (Running on oeis4.)