OFFSET
0,3
COMMENTS
The greedy inverse (sequence of the smallest k such that a(k)=n) starts 0, 3, 2, 6, 5, 11, 10, 18, 17, 27, 26, 38, 37, 51, 50, ... and appears to be given by A010000 and A002522, interleaved. - R. J. Mathar, Nov 17 2014
LINKS
Ivan Panchenko, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = A048761(n) - n = ceiling(sqrt(n))^2 - n.
G.f.: (-x^2 + (x-x^2)*Sum_{m>=1} (1+2*m)*x^(m^2))/(1-x)^2. This sum is related to Jacobi Theta functions. - Robert Israel, Nov 17 2014
MAPLE
MATHEMATICA
Table[Ceiling[Sqrt[n]]^2-n, {n, 0, 100}] (* Vladimir Joseph Stephan Orlovsky, Feb 01 2012 *)
PROG
(Magma) [ Ceiling(Sqrt(n))^2-n : n in [0..50] ]; // Wesley Ivan Hurt, Jun 11 2014
(PARI) a(n)=if(issquare(n), 0, (sqrtint(n)+1)^2-n) \\ Charles R Greathouse IV, Oct 22 2014
(Python)
from math import isqrt
def A068527(n): return 0 if n == 0 else (isqrt(n-1)+1)**2-n # Chai Wah Wu, Feb 22 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vladeta Jovovic, Mar 21 2002
STATUS
approved