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!)
A117746 Numbers of the form k^2 - k - 1 whose digit sum is also a number of the form k^2 - k - 1. 1
1, 5, 29, 41, 131, 155, 209, 379, 461, 551, 649, 991, 1055, 1121, 1189, 1639, 1721, 1891, 2351, 2449, 2755, 3079, 3305, 3781, 4159, 4421, 4555, 5699, 5851, 6005, 6319, 6805, 7309, 7831, 8371, 9505, 10099, 10301, 10505, 12431, 12655, 13339, 14761 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
5699 is in the sequence because 5699 = 76^2 - 76 - 1, the sum of its digits is 5 + 6 + 9 + 9 = 29, and 29 can be written as 6^2 - 6 - 1.
MATHEMATICA
nset=Table[n^2-n-1, {n, 200}]; Rest[Select[nset, MemberQ[nset, Total[ IntegerDigits[ #]]]&]] (* Harvey P. Dale, Jan 22 2011 *)
PROG
(PARI)
upto(n) = {
my(res = List());
for(i = 2, sqrtint(n) + 1,
c = i^2 - i - 1;
if(issquare(4*sumdigits(c) + 5),
listput(res, c)
)
);
res
} \\ David A. Corneth, Jan 04 2024
CROSSREFS
Cf. A028387.
Sequence in context: A167742 A107151 A340154 * A156053 A081116 A192090
KEYWORD
nonn,base
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 14 2006
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 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)