Friday Poser

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
I think your hints gave a little too much information, Andrew :cool:

I believe each number is the sum of the previous number plus the sum of the digits of the previous number plus the square of the last digit of the previous number.

Not particularly easy to do with an excel formula but if you put 1 in A1 and this formula in A2

=A1+MOD(A1,10)^2+SUMPRODUCT(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)+0)

dragged down that'll reproduce the series
 
I think your hints gave a little too much information, Andrew :cool:
I know - given there were no takers I thought maybe it was too hard! :)

Your method is exactly right. Interesting use of sumproduct and indirect to get the sum of the digits. I used the following array formula:
=SUM(G1, MOD(A1,10)^2, IF(LEN(A1)>=ROW(A$1:A2), 0+(MID(A1, ROW(A$1:A2), 1)),0))

Andrew
 
Right seeing as how there are minute left of friday I'm going away with a caravan tomorrow

30,

What should be the next number
 
Hard to find a pattern with only 1 number, so I am guessing 0.
 

Forum statistics

Threads
1,222,646
Messages
6,167,311
Members
452,109
Latest member
nathanle89

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top