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!)
A242401 Numbers that are neither triangular nor square. 4
2, 5, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 79, 80, 82, 83, 84 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
A010052(a(n)) + A010054(a(n)) = 0. - Reinhard Zumkeller, May 13 2014
EXAMPLE
6 is not a term because it's triangular;
9 is not a term because it's square.
MATHEMATICA
With[{nn=90}, Complement[Range[nn], Range[Floor[Sqrt[nn]]]^2, Accumulate[ Range[ Floor[(Sqrt[1+8nn]-1)/2]]]]] (* Harvey P. Dale, May 03 2022 *)
PROG
(Sage)
[x for x in [1..100] if not(is_square(x)) and not(is_triangular_number(x))] # Tom Edgar, May 13 2014
(Haskell)
a242401 n = a242401_list !! (n-1)
a242401_list = filter ((== 0) . a010054) a000037_list
-- Reinhard Zumkeller, May 13 2014
CROSSREFS
Cf. A005214 (complement); intersection of A000037 and A014132.
Sequence in context: A160530 A214518 A331866 * A050941 A299232 A153083
KEYWORD
nonn,easy
AUTHOR
J. Lowell, May 13 2014
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 16 01:40 EDT 2024. Contains 371696 sequences. (Running on oeis4.)