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!)
A328933 For any negative number, add the digits (assigning the negative sign just to the first digit), square the result and add it to the original number. This sequence shows negative numbers which give a positive answer. 0
-2, -3, -4, -5, -6, -7, -8, -9, -15, -16, -17, -18, -19, -28, -29, -159, -168, -169, -178, -179, -187, -188, -189, -197, -198, -199 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,1

COMMENTS

These numbers are the Zombie Numbers.

Start with any negative (dead) number, add the digits (attaching the negative to the first digit), square the result and add it to the original number. If your answer is positive then you have a 'zombie number' which has 'risen from the dead'.

The list is finite with 26 terms.

Negative integer k such that (digitsum(-k) - 2*(1st digit of -k))^2 > -k. - Stefano Spezia, Nov 01 2019

LINKS

Table of n, a(n) for n=1..26.

Ed Southall, Twitter post about Halloween maths, SolveMyMaths, Oct 31 2019.

EXAMPLE

-27 is not a zombie number because -2 + 7 = 5 and -27 + (5)^2 = -2.

-28 is a zombie number because -2 + 8 = 6 and -28 + (6)^2 = 8.

MATHEMATICA

-Select[Range[200], (Total[IntegerDigits[#]]-2*First[IntegerDigits[#]])^2-#>0&] (* Stefano Spezia, Nov 01 2019 *)

PROG

(PARI) f(n) = my(d=digits(n), s = sumdigits(n) - 2*d[1]); s^2 + n;

isok(n) = f(n) > 0;

forstep(n=-1, -10000, -1, if (isok(n), print1(n, ", "))) \\ Michel Marcus, Oct 31 2019

CROSSREFS

Sequence in context: A032992 A190298 A069118 * A032978 A197181 A260352

Adjacent sequences: A328930 A328931 A328932 * A328934 A328935 A328936

KEYWORD

sign,base,dumb,fini,full

AUTHOR

Andrew Toothill, Oct 31 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 February 26 11:45 EST 2023. Contains 360650 sequences. (Running on oeis4.)