NAME

Math::Goedel - Goedel number calculator

SYNOPSIS

use Math::Goedel qw/goedel/;

print goedel(9);  # will print 512 (2**9)
print goedel(81); # will print 768 (2**8 * 3**1)
print goedel(230);# will print 108 (2**2 * 3**3 * 5**0)

print Math::Goedel::enc(9); # same as goedel(9)

EXPORT

@EXPORT_OK => qw/goedel/

FUNCTIONS

goedel($n)

calculate goedel number for n

enc($n)

synonym for goedel($n)

SEE ALSO

http://en.wikipedia.org/wiki/G%C3%B6del_number

AUTHOR

KATOU Akira (turugina), <turugina at floralcompany.jp>

BUGS

Please report any bugs or feature requests to bug-math-goedel at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Math-Goedel. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Math::Goedel

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2008 KATOU Akira (turugina), all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.