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!)
A325462 a(n) is the least number not 2*a(m) or 3*a(m)-1 for any m < n. 4
1, 3, 4, 5, 7, 9, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 27, 28, 29, 31, 33, 36, 37, 39, 40, 41, 43, 45, 48, 49, 51, 52, 53, 55, 57, 59, 60, 61, 63, 64, 67, 69, 70, 71, 73, 75, 76, 77, 79, 81, 84, 85, 87, 88, 89, 91, 93, 94, 95, 97, 99, 100, 101, 103, 105 (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 2 is disallowed, so that a(2) = 3, whence the numbers 6 and 8 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[{#/2, (#+1)/3}],
IntegerQ]]] &]], {150}]; a (* A325462 *)
Complement[Range[Last[a]], a] (* A325463 *)
(* Peter J. C. Moses, Apr 25 2019 *)
CROSSREFS
Sequence in context: A033556 A219044 A032507 * A063950 A010420 A035260
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 01 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 April 17 20:27 EDT 2024. Contains 371767 sequences. (Running on oeis4.)