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.

A185549 a(n) = ceiling(n^(3/2)); complement of A185550.

This page as a plain text file.
%I A185549 #20 May 17 2025 05:38:07
%S A185549 0,1,3,6,8,12,15,19,23,27,32,37,42,47,53,59,64,71,77,83,90,97,104,111,
%T A185549 118,125,133,141,149,157,165,173,182,190,199,208,216,226,235,244,253,
%U A185549 263,273,282,292,302,312,323,333,343,354,365,375,386,397,408,420,431,442,454,465,477,489
%N A185549 a(n) = ceiling(n^(3/2)); complement of A185550.
%H A185549 Reinhard Zumkeller, <a href="/A185549/b185549.txt">Table of n, a(n) for n = 0..10000</a>
%F A185549 a(n) = ceiling(n^(3/2)).
%F A185549 a(n) = sqrt(A077107(n)). - _Amiram Eldar_, May 17 2025
%t A185549 f[n_]=Ceiling[n^(3/2)];
%t A185549 t1=Table[f[n],{n,1,90}];t1  (* A185549 *)
%t A185549 t2=Complement[Range[150], Table[f[n],{n,1,80}]];t2  (* A185550 *)
%t A185549 Ceiling[Sqrt[Range[0,70]^3]] (* _Harvey P. Dale_, Jul 04 2023 *)
%o A185549 (Haskell)
%o A185549 a185549 = ceiling . (** (3 / 2)) . fromIntegral
%o A185549 -- _Reinhard Zumkeller_, Jul 24 2015
%o A185549 (PARI) for(n=0,50, print1(ceil(n^(3/2)), ", ")) \\ _G. C. Greubel_, Jul 08 2017
%Y A185549 Cf. A000093, A077107, A185550.
%Y A185549 Cf. A144968 (first differences).
%K A185549 nonn,easy
%O A185549 0,3
%A A185549 _Clark Kimberling_, Jan 30 2011
%E A185549 Initial a(0)=0 prepended and offset adjusted by _Reinhard Zumkeller_, Jul 24 2015